# ************************************************************ # Sequel Pro SQL dump # Version 4541 # # http://www.sequelpro.com/ # https://github.com/sequelpro/sequelpro # # Host: 121.196.17.222 (MySQL 5.7.29-log) # Database: crmeb_java # Generation Time: 2020-08-13 07:59:31 +0000 # ************************************************************ /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; # Dump of table eb_article # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_article`; CREATE TABLE `eb_article` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '文章管理ID', `cid` varchar(255) NOT NULL DEFAULT '' COMMENT '分类id', `title` varchar(255) NOT NULL COMMENT '文章标题', `author` varchar(255) DEFAULT '' COMMENT '文章作者', `image_input` varchar(255) NOT NULL COMMENT '文章图片', `synopsis` varchar(255) DEFAULT '' COMMENT '文章简介', `share_title` varchar(255) DEFAULT '' COMMENT '文章分享标题', `share_synopsis` varchar(255) DEFAULT '' COMMENT '文章分享简介', `visit` varchar(255) DEFAULT '' COMMENT '浏览次数', `sort` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '排序', `url` varchar(255) DEFAULT '' COMMENT '原文链接', `media_id` varchar(100) DEFAULT NULL COMMENT '微信素材id', `status` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '状态', `hide` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否隐藏', `admin_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '管理员id', `mer_id` int(10) unsigned DEFAULT '0' COMMENT '商户id', `product_id` int(10) NOT NULL DEFAULT '0' COMMENT '商品关联id', `is_hot` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否热门(小程序)', `is_banner` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否轮播图(小程序)', `content` text NOT NULL COMMENT '文章内容', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='文章管理表'; LOCK TABLES `eb_article` WRITE; /*!40000 ALTER TABLE `eb_article` DISABLE KEYS */; INSERT INTO `eb_article` (`id`, `cid`, `title`, `author`, `image_input`, `synopsis`, `share_title`, `share_synopsis`, `visit`, `sort`, `url`, `media_id`, `status`, `hide`, `admin_id`, `mer_id`, `product_id`, `is_hot`, `is_banner`, `content`, `create_time`, `update_time`) VALUES (25,'0','2019苹果新品发布会:iPhone 11 Pro系列发布','陈功','image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png','阿达萨','2019苹果新品发布会:iPhone 11 Pro系列发布','阿达萨','',0,'http://www.techweb.com.cn/ucweb/news/id/2753912',NULL,0,0,0,0,0,1,1,'

阿达萨

','2020-08-13 15:26:46','2020-08-13 15:26:46'), (27,'0','随便添加','tegst','image/content/2020/08/13/e3ab04e8645d4018b86c37e8bd5e8532ph4r9xmziw.png','ads ','随便添加','ads ','',0,'http://front.java.crmeb.net/content/articleManager',NULL,0,0,0,0,0,1,1,'

suibian添加的数据啊看见十大科技啊还是看见哈撒可见度按时可见度蛤科进士活动空间撒谎的看见撒谎的卡河上的看见啥看见啥的看啥看见哈斯空间的哈克觉得是哈克觉得是和的撒

','2020-08-13 15:36:35','2020-08-13 15:36:35'), (28,'0','非banner','ads ','image/content/2020/08/13/32bd397a3d7a4ae9b3155d999785500b5ulxa373fz.png','asd ','非banner','asd ','',0,'',NULL,0,0,0,0,0,1,0,'

asd asd sa d

','2020-08-13 15:39:06','2020-08-13 15:39:06'), (29,'0','非热门','按时的','image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','a\'s\'d','非热门','a\'s\'d','',0,'',NULL,0,0,0,0,0,0,1,'

asd阿达萨

','2020-08-13 15:39:33','2020-08-13 15:39:33'); /*!40000 ALTER TABLE `eb_article` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_category # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_category`; CREATE TABLE `eb_category` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `pid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '父级ID', `path` varchar(255) NOT NULL DEFAULT '/0/' COMMENT '路径', `name` varchar(50) NOT NULL COMMENT '分类名称', `type` smallint(2) DEFAULT '1' COMMENT '类型,1 产品分类,2 附件分类,3 文章分类, 4 设置分类, 5 菜单分类', `url` varchar(255) DEFAULT '' COMMENT '地址', `extra` text COMMENT '扩展字段 Jsos格式', `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态, 1正常,0失效', `sort` int(5) NOT NULL DEFAULT '99999' COMMENT '排序', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `status+pid` (`pid`,`status`), KEY `id+status+url` (`path`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='分类表'; LOCK TABLES `eb_category` WRITE; /*!40000 ALTER TABLE `eb_category` DISABLE KEYS */; INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `create_time`, `update_time`) VALUES (42,0,'/0/','商品',5,'/store','s-goods',1,1,'2020-04-28 17:03:34','2020-08-12 12:29:13'), (43,42,'/0/42/','商品管理',5,'/store/index',NULL,1,1,'2020-04-28 17:04:20','2020-08-12 12:29:13'), (44,42,'/0/42/','商品分类',5,'/store/sort',NULL,1,1,'2020-04-28 17:04:40','2020-08-12 12:29:13'), (45,0,'/0/','订单',5,'/order','s-order',1,1,'2020-04-28 17:04:56','2020-08-12 12:29:13'), (46,45,'/0/45/','订单管理',5,'/order/index','s-order',1,1,'2020-04-28 17:05:17','2020-08-12 12:29:13'), (47,0,'/0/','用户',5,'/user','user-solid',1,1,'2020-04-28 17:05:53','2020-08-12 12:29:13'), (48,47,'/0/47/','用户管理',5,'/user/index',NULL,1,1,'2020-04-28 17:07:13','2020-08-12 12:29:13'), (49,47,'/0/47/','用户标签',5,'/user/label',NULL,1,1,'2020-04-28 17:42:21','2020-08-12 12:29:13'), (51,0,'/0/','设置',5,'/operation','s-tools',1,-9,'2020-05-06 09:40:14','2020-08-12 12:29:13'), (52,51,'/0/51/','管理权限',5,'/operation/roleManager',NULL,1,1,'2020-05-06 09:40:35','2020-08-12 12:29:13'), (53,52,'/0/51/52/','身份管理',5,'/operation//roleManager/identityManager',NULL,1,1,'2020-05-06 09:40:51','2020-08-12 12:29:13'), (54,52,'/0/51/52/','管理员列表',5,'/operation//roleManager/adminList',NULL,1,1,'2020-05-06 09:41:11','2020-08-12 12:29:13'), (55,52,'/0/51/52/','权限规则',5,'/operation//roleManager/promiseRules',NULL,1,1,'2020-05-06 09:41:46','2020-08-12 12:29:13'), (56,0,'/0/','内容',5,'/content','s-management',1,1,'2020-05-07 12:00:33','2020-08-12 12:29:13'), (57,56,'/0/56/','文章管理',5,'/content/articleManager',NULL,1,1,'2020-05-07 12:02:39','2020-08-12 12:29:13'), (58,56,'/0/56/','文章分类',5,'/content/classifManager',NULL,1,1,'2020-05-07 12:02:46','2020-08-12 12:29:13'), (59,63,'/0/59/63/','开发者专区',3,'http://datong.crmeb.net/public/uploads/editor/20190111/5c387daf3ef63.jpg',NULL,1,1,'2020-05-07 15:06:09','2020-08-12 12:29:13'), (63,59,'/0/59/','我是二级分类',3,'呜呜呜呜','呜呜呜呜',1,1,'2020-05-09 10:19:46','2020-08-12 12:29:13'), (66,0,'/0/','维护',5,'/maintain','s-open',1,-10,'2020-05-09 16:02:05','2020-08-12 12:29:13'), (67,66,'/0/66/','开发配置',5,'/maintain//devconfiguration',NULL,1,0,'2020-05-09 16:06:46','2020-08-12 12:29:13'), (68,67,'/0/66/67/','配置分类',5,'/maintain/devconfiguration/configCategory',NULL,1,0,'2020-05-09 16:07:09','2020-08-12 12:29:13'), (69,67,'/0/66/67/','组合数据',5,'/maintain/devconfiguration/combineddata',NULL,1,0,'2020-05-09 16:08:00','2020-08-12 12:29:13'), (80,51,'/0/51/','系统设置',5,'/operation//setting',NULL,1,1,'2020-05-20 09:44:47','2020-08-12 12:29:13'), (81,0,'/0/','基础配置',6,'基础配置','64',1,1,'2020-05-20 10:02:57','2020-08-12 12:29:13'), (93,81,'/0/81/','站点配置',6,'站点配置','64',1,1,'2020-05-21 11:04:20','2020-08-12 12:29:13'), (94,81,'/0/81/','WSS配置',6,'WSS配置','76',1,1,'2020-05-21 11:04:37','2020-08-12 12:29:13'), (95,0,'/0/','商城配置',6,'商城配置','77',1,2,'2020-05-21 11:10:20','2020-08-12 12:29:13'), (96,95,'/0/95/','商城基础配置',6,'商城基础配置','77',1,1,'2020-05-21 11:10:40','2020-08-12 12:29:13'), (97,95,'/0/95/','物流配置',6,'物流配置','74',1,1,'2020-05-21 11:10:54','2020-08-12 12:29:13'), (98,95,'/0/95/','小票打印配置',6,'小票打印配置','75',0,1,'2020-05-21 11:11:11','2020-08-13 14:07:02'), (99,95,'/0/95/','充值配置',6,'充值配置','78',1,1,'2020-05-21 11:11:28','2020-08-12 12:29:13'), (100,0,'/0/','应用配置',6,'应用配置',NULL,1,1,'2020-05-21 12:31:49','2020-08-12 12:29:13'), (101,100,'/0/100/','公众号配置',6,'公众号配置','65',1,1,'2020-05-21 12:32:07','2020-08-12 12:29:13'), (102,100,'/0/100/','小程序配置',6,'小程序配置','66',1,1,'2020-05-21 12:32:18','2020-08-12 12:29:13'), (103,0,'/0/','支付配置',6,'支付配置',NULL,1,1,'2020-05-21 12:33:36','2020-08-12 12:29:13'), (104,103,'/0/103/','公众号支付配置',6,'公众号支付配置','67',1,1,'2020-05-21 12:33:54','2020-08-12 12:29:13'), (105,103,'/0/103/','小程序支付配置',6,'小程序支付配置','68',1,1,'2020-05-21 12:34:36','2020-08-12 12:29:13'), (106,103,'/0/103/','线下支付',6,'线下支付','79',1,1,'2020-05-21 12:34:48','2020-08-12 12:29:13'), (107,103,'/0/103/','余额支付',6,'余额支付','80',1,1,'2020-05-21 12:35:01','2020-08-12 12:29:13'), (108,0,'/0/','文件上传配置',6,'文件上传配置',NULL,1,1,'2020-05-21 12:35:16','2020-08-12 12:29:13'), (109,108,'/0/108/','本地(不推荐)',6,'本地(不推荐)','108',1,1,'2020-05-21 12:35:28','2020-08-12 12:29:13'), (110,108,'/0/108/','阿里云配置',6,'阿里云配置','81',1,1,'2020-05-21 12:36:01','2020-08-12 12:29:13'), (111,108,'/0/108/','七牛云配置',6,'七牛云配置','82',1,1,'2020-05-21 12:36:12','2020-08-12 12:29:13'), (112,108,'/0/108/','腾讯云配置',6,'腾讯云配置','83',1,1,'2020-05-21 12:36:22','2020-08-12 12:29:13'), (113,0,'/0/','应用',5,'/appSetting','s-promotion',1,1,'2020-05-21 16:12:53','2020-08-12 12:29:13'), (114,113,'/0/113/','公众号',5,'/appSetting/publicAccount',NULL,1,1,'2020-05-21 16:13:18','2020-08-12 12:29:13'), (115,114,'/0/113/114/','微信菜单',5,'/appSetting//publicAccount/wxMenus',NULL,1,1,'2020-05-21 16:13:36','2020-08-12 12:29:13'), (118,0,'/0/','营销',5,'/marketing','s-marketing',1,1,'2020-05-25 14:39:52','2020-08-12 12:29:13'), (119,118,'/0/118/','优惠券',5,'/marketing/coupon',NULL,1,1,'2020-05-25 14:40:13','2020-08-12 12:29:13'), (123,118,'/0/118/','积分',5,'/marketing/integral',NULL,1,1,'2020-05-25 14:41:33','2020-08-12 12:29:13'), (127,42,'/0/42/','商品规格',5,'/store/attr',NULL,1,1,'2020-05-25 18:12:11','2020-08-12 12:29:13'), (128,42,'/0/42/','商品评论',5,'/store/comment',NULL,1,1,'2020-05-27 10:16:30','2020-08-12 12:29:13'), (129,51,'/0/51/','提货点设置',5,'/operation/systemStore',NULL,1,1,'2020-05-27 11:42:51','2020-08-12 12:29:13'), (130,129,'/0/51/129/','提货点',5,'/operation/systemStore/point',NULL,1,1,'2020-05-27 11:46:10','2020-08-12 12:29:13'), (131,129,'/0/51/129/','核销员',5,'/operation/systemStore/clerkList',NULL,1,1,'2020-05-27 11:51:16','2020-08-12 12:29:13'), (132,129,'/0/51/129/','核销订单',5,'/operation/systemStore/order',NULL,1,1,'2020-05-27 11:54:00','2020-08-12 12:29:13'), (134,95,'/0/95/','首页配置',6,'index_config','69',1,5,'2020-06-02 17:35:58','2020-08-12 12:29:13'), (135,0,'/0/','小树树2',2,'url',NULL,1,1,'2020-06-03 15:50:15','2020-08-12 12:29:13'), (136,135,'/0/135/','小树娃',2,'url',NULL,1,1,'2020-06-03 16:59:50','2020-08-12 12:29:13'), (137,135,'/0/135/','小紅',2,'url',NULL,1,1,'2020-06-03 17:15:50','2020-08-12 12:29:13'), (138,136,'/0/135/136/','小鼠',2,'url',NULL,1,1,'2020-06-03 17:25:39','2020-08-12 12:29:13'), (139,113,'/0/113/','小程序',5,'/appSetting/publicRoutine',NULL,1,1,'2020-06-05 09:56:17','2020-08-12 12:29:13'), (140,139,'/0/113/139/','小程序订阅消息',5,'/appSetting/publicRoutine/routineTemplate',NULL,1,1,'2020-06-05 09:56:58','2020-08-12 12:29:13'), (141,114,'/0/113/114/','自动回复',5,'/appSetting/publicAccount/wxReply',NULL,1,1,'2020-06-15 16:15:32','2020-08-12 12:29:13'), (146,0,'/0/','分销',5,'/distribution','s-check',1,1,'2020-07-18 16:31:09','2020-08-12 12:29:13'), (147,146,'/0/146/','分销员管理',5,'/distribution/index',NULL,1,1,'2020-07-18 16:31:49','2020-08-12 12:29:13'), (148,146,'/0/146/','分销配置',5,'/distribution/distributionconfig',NULL,1,1,'2020-07-18 16:32:06','2020-08-12 12:29:13'), (149,51,'/0/51/','短信设置',5,'/operation/systemSms',NULL,1,1,'2020-07-21 16:51:29','2020-08-12 12:29:13'), (150,149,'/0/51/149/','短信账户',5,'/operation/systemSms/config',NULL,1,1,'2020-07-21 16:52:48','2020-08-12 12:29:13'), (151,149,'/0/51/149/','短信模板',5,'/operation/systemSms/template',NULL,1,1,'2020-07-21 19:45:26','2020-08-12 12:29:13'), (152,149,'/0/51/149/','短信购买',5,'/operation/systemSms/pay',NULL,1,1,'2020-07-21 19:45:46','2020-08-12 12:29:13'), (158,119,'/0/118/119/','优惠券列表',5,'/marketing/coupon/list',NULL,1,1,'2020-07-24 16:13:10','2020-08-12 12:29:13'), (159,119,'/0/118/119/','会员领取记录',5,'/marketing/coupon/record',NULL,1,1,'2020-07-24 16:13:37','2020-08-12 12:29:13'), (160,123,'/0/118/123/','积分配置',5,'/marketing/integral/integralconfig',NULL,1,1,'2020-07-24 16:14:48','2020-08-12 12:29:13'), (161,123,'/0/118/123/','积分日志',5,'/marketing/integral/integrallog',NULL,1,1,'2020-07-24 16:15:11','2020-08-12 12:29:13'), (162,47,'/0/47/','用户等级',5,'/user/grade',NULL,1,1,'2020-07-24 16:21:48','2020-08-12 12:29:13'), (164,47,'/0/47/','用户分组',5,'/user/group',NULL,1,1,'2020-07-24 16:22:46','2020-08-12 12:29:13'), (165,51,'/0/51/','物流设置',5,'/operation/logistics',NULL,1,1,'2020-07-24 16:37:56','2020-08-12 12:29:13'), (166,165,'/0/51/165/','城市数据',5,'/operation/logistics/cityList',NULL,1,1,'2020-07-24 16:38:22','2020-08-12 12:29:13'), (167,165,'/0/51/165/','物流公司',5,'/operation/logistics/companyList',NULL,1,1,'2020-07-24 16:38:46','2020-08-12 12:29:13'), (168,165,'/0/51/165/','运费模板',5,'/operation/logistics/shippingTemplates',NULL,1,1,'2020-07-24 16:39:03','2020-08-12 12:29:13'), (169,165,'/0/51/165/','物流配置',5,'/operation/logistics/logisticsConfig',NULL,1,1,'2020-07-24 16:39:27','2020-08-12 12:29:13'), (170,149,'/0/51/149/','短信开关',5,'/operation/systemSms/message',NULL,1,1,'2020-07-24 16:40:10','2020-08-12 12:29:13'), (171,141,'/0/113/114/141/','微信关注回复',5,'/appSetting/publicAccount/wxReply/follow',NULL,1,1,'2020-07-24 16:42:52','2020-08-12 12:29:13'), (172,141,'/0/113/114/141/','关键字回复',5,'/appSetting/publicAccount/wxReply/keyword',NULL,1,1,'2020-07-24 16:43:09','2020-08-12 12:29:13'), (173,141,'/0/113/114/141/','无效关键词回复',5,'/appSetting/publicAccount/wxReply/replyIndex',NULL,1,1,'2020-07-24 16:43:23','2020-08-12 12:29:13'), (174,114,'/0/113/114/','微信模板消息',5,'/appSetting//publicAccount/template',NULL,1,1,'2020-07-24 16:43:52','2020-08-12 12:29:13'), (175,43,'/0/42/43/','商品添加',5,'api/admin/store/product/save',NULL,0,1,'2020-07-24 16:46:04','2020-08-13 11:00:38'), (176,43,'/0/42/43/','商品修改',5,'api/admin/store/product/update',NULL,0,1,'2020-07-24 16:46:19','2020-08-13 11:00:50'), (177,43,'/0/42/43/','商品详情',5,'api/admin/store/product/info',NULL,0,1,'2020-07-24 16:46:33','2020-08-13 11:00:55'), (181,182,'/0/182/','测试分类01',2,'url',NULL,1,1,'2020-08-10 10:18:52','2020-08-12 12:29:13'), (182,0,'/0/','测试分类02',2,'url',NULL,1,1,'2020-08-10 10:20:14','2020-08-12 12:29:13'), (183,0,'/0/','测试分类03',2,'url',NULL,1,1,'2020-08-10 10:31:17','2020-08-12 12:29:13'), (184,181,'/0/181/','测试二级分类01',2,'url',NULL,1,1,'2020-08-10 10:34:50','2020-08-12 12:29:13'), (185,0,'/0/','ADIDAS 春季新品运动鞋图片1',2,'url',NULL,1,1,'2020-08-10 10:40:52','2020-08-12 12:29:13'), (186,183,'/0/183/','A',2,'url',NULL,1,1,'2020-08-10 10:53:48','2020-08-12 12:29:13'), (187,0,'/0/183/186/','B',2,'url',NULL,1,1,'2020-08-10 10:55:28','2020-08-12 12:29:13'), (188,184,'/0/181/184/','测试四级分类01',2,'url',NULL,1,1,'2020-08-10 11:08:32','2020-08-12 12:29:13'), (236,95,'/0/95/','测试配置',6,'test_config','118',1,9,'2020-08-11 14:03:19','2020-08-12 12:29:13'), (240,10000,'/0/','2323',2,'url',NULL,1,1,'2020-08-11 15:20:28','2020-08-12 12:29:13'), (241,10000,'/0/','韩国',2,'url',NULL,1,1,'2020-08-11 15:22:25','2020-08-12 12:29:13'), (245,0,'/0/','热门推荐',1,'','image/content/2020/08/10/814d9f0beba040d2904079d7b99fc586el2l3odbj3.png',1,0,'2020-08-12 11:42:27','2020-08-13 13:51:14'), (246,245,'/0/245/','新品上市',1,'www','image/store/2020/08/13/95e065018ba24172b2e2dd2e2833360coobdzkt671.png',1,0,'2020-08-12 11:42:58','2020-08-13 13:08:25'), (248,245,'/0/245/','热卖商品',1,'www','image/store/2020/08/13/29b418bf2543477d8417a85e779e6d79clby7stw86.png',1,0,'2020-08-12 11:50:40','2020-08-13 13:29:03'), (250,67,'/0/66/67/','表单配置',5,'/maintain/devconfiguration/formConfig',NULL,1,0,'2020-08-12 12:09:56','2020-08-12 12:29:13'), (258,245,'/0/245/','折扣专区',1,'www','image/store/2020/08/13/1826c7f20771444e888501d91332f129wik43qfgmw.png',1,0,'2020-08-12 13:59:31','2020-08-13 13:30:14'), (267,0,'/0/','控制台',5,'/dashboard','menu',1,10,'2020-08-13 10:31:07','2020-08-13 12:32:06'), (268,0,'/0/','图标素材',2,'url',NULL,0,1,'2020-08-13 10:36:08','2020-08-13 10:36:08'), (270,0,'/0/','banner',2,'url',NULL,0,1,'2020-08-13 11:35:39','2020-08-13 11:35:39'), (271,0,'/0/','分类素材',2,'url',NULL,0,1,'2020-08-13 11:46:28','2020-08-13 11:46:28'), (272,0,'/0/','家用电器',1,'','image/store/2020/08/13/88dfb08327f7470d8285613aa1bd9ab3xk2qzolbad.png',1,0,'2020-08-13 12:03:40','2020-08-13 13:51:17'), (273,272,'/0/272/','电视',1,'','image/store/2020/08/13/15e36da884e44f91939a92468d0c848fxftnm6thvc.png',1,0,'2020-08-13 12:05:23','2020-08-13 12:05:23'), (274,272,'/0/272/','冰箱',1,'www','image/store/2020/08/13/0c1fb92238ce4f67b9c2cb03c9c932c8a28451t0g7.png',1,0,'2020-08-13 12:06:47','2020-08-13 12:06:47'), (275,272,'/0/272/','洗衣机',1,'www','image/store/2020/08/13/6f722314cefa418fada5eab9e09bf86aqutumxihsx.png',1,0,'2020-08-13 12:07:57','2020-08-13 12:07:57'), (276,272,'/0/272/','生活电器',1,'','image/store/2020/08/13/df0f8dfb34c1424abde8737039c5f58b1acdgq3h7w.png',1,0,'2020-08-13 12:11:36','2020-08-13 12:11:36'), (277,272,'/0/272/','厨卫电器',1,'','image/store/2020/08/13/cb007f931afb4386bfff7f80b8971203c5qc2k1j1n.png',1,0,'2020-08-13 12:12:38','2020-08-13 12:12:38'), (279,272,'/0/272/','清凉一夏',1,'','image/store/2020/08/13/306ee4383bbf460494e8b3368782a076ugnezzb362.png',1,0,'2020-08-13 12:15:11','2020-08-13 12:26:18'), (280,0,'/0/','家装家具',1,'',NULL,1,0,'2020-08-13 12:17:25','2020-08-13 12:17:43'), (281,0,'/0/','户外出行',1,'',NULL,1,0,'2020-08-13 12:17:54','2020-08-13 12:17:54'), (282,0,'/0/','美妆个护',1,'',NULL,1,0,'2020-08-13 12:18:04','2020-08-13 12:18:04'), (283,0,'/0/','3C数码',1,'',NULL,1,0,'2020-08-13 12:18:14','2020-08-13 12:18:14'), (284,0,'/0/','日用文创',1,'',NULL,1,0,'2020-08-13 12:18:30','2020-08-13 12:18:30'), (285,280,'/0/280/','智能门锁',1,'','image/store/2020/08/13/f4f47201c43e42ac82b83ed711199774ggihs7g6yb.png',1,0,'2020-08-13 13:31:48','2020-08-13 13:31:48'), (286,280,'/0/280/','居家照明',1,'','image/store/2020/08/13/f0771d0db94847bbb2cb60ebe5201aa0tzzjzor6d5.png',1,0,'2020-08-13 13:33:06','2020-08-13 13:33:06'), (287,280,'/0/280/','家装建材',1,'','image/store/2020/08/13/4209c46356f4478ea3ed2b8adfc8dd4d4udgw8nsig.png',1,0,'2020-08-13 13:34:22','2020-08-13 13:34:22'), (288,281,'/0/281/','健身运动',1,'','image/store/2020/08/13/183bae2de334412f8593325805bb45e07xvwxc6nbn.png',1,0,'2020-08-13 13:35:37','2020-08-13 13:35:37'), (289,281,'/0/281/','户外装备',1,'','image/store/2020/08/13/767c7e25f56543f398e11896d356b46a1t4l6k8qk0.png',1,0,'2020-08-13 13:36:34','2020-08-13 13:36:34'), (290,281,'/0/281/','骑行配件',1,'','image/store/2020/08/13/8525ef6066a04537aa5ee92234dc2edcf1iyqm9gq9.png',1,0,'2020-08-13 13:37:23','2020-08-13 13:37:23'), (291,282,'/0/282/','美妆工具',1,'','image/store/2020/08/13/57f108bff43744c88323c666d77cac72g4p0a23tpo.png',1,0,'2020-08-13 13:38:32','2020-08-13 13:38:32'), (292,282,'/0/282/','口腔清洁',1,'','image/store/2020/08/13/72f39322b33249e0b3441908e3b657b2rzf7g4x37c.png',1,0,'2020-08-13 13:39:33','2020-08-13 13:39:33'), (293,282,'/0/282/','彩妆香氛',1,'','image/store/2020/08/13/bf981c370d9d44f998803310fedb8af3yr9suwbwp1.png',1,0,'2020-08-13 13:40:34','2020-08-13 13:40:34'), (294,282,'/0/282/','面部护肤',1,'','image/store/2020/08/13/59a066f8bb5145cbada4b7a08965cf15b26idurig9.png',1,0,'2020-08-13 13:42:19','2020-08-13 13:42:19'), (295,282,'/0/282/','身体护理',1,'','image/store/2020/08/13/769f2ba251114a75bc3da94166770482zv3tb4ogjy.png',1,0,'2020-08-13 13:43:21','2020-08-13 13:43:21'), (296,282,'/0/282/','其他工具',1,'','image/store/2020/08/13/5c9d8b4b4a2e4fc782558787fc941e24o6u5iv52dl.png',1,0,'2020-08-13 13:44:15','2020-08-13 13:44:15'), (297,283,'/0/283/','手机',1,'','image/store/2020/08/13/3a985dc276b941c093a12332500d9784ce3bed9l0c.png',1,0,'2020-08-13 13:45:52','2020-08-13 13:45:52'), (298,283,'/0/283/','平板电脑',1,'','image/store/2020/08/13/5771a123b9a24666b5cdcf531f7744d6grduvuarjw.png',1,0,'2020-08-13 13:46:22','2020-08-13 13:46:22'), (299,283,'/0/283/','数码配件',1,'','image/store/2020/08/13/760282c126c74ff7a335c3efd6bb2e27vduh9zraqs.png',1,0,'2020-08-13 13:47:16','2020-08-13 13:47:16'), (300,284,'/0/284/','日用杂货',1,'','image/store/2020/08/13/ba82799518704655ab2fdc254336de08wtb2ofda96.png',1,0,'2020-08-13 13:48:30','2020-08-13 13:48:30'), (301,284,'/0/284/','纸品湿巾',1,'','image/store/2020/08/13/eb7a947539d94cd495ea6493e37a3e35lkqmcnnl9q.png',1,0,'2020-08-13 13:49:30','2020-08-13 13:49:30'), (302,284,'/0/284/','办公文具',1,'','image/store/2020/08/13/a84efcfa299c4269af95d671e122d4770vrq87ttfz.png',1,0,'2020-08-13 13:50:39','2020-08-13 13:50:39'), (303,0,'/0/','产品',2,'url',NULL,0,1,'2020-08-13 13:53:11','2020-08-13 13:53:11'), (304,0,'/0/','iphone 11 新品发布会',3,'','image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png',1,999,'2020-08-13 15:18:13','2020-08-13 15:19:52'); /*!40000 ALTER TABLE `eb_category` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_express # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_express`; CREATE TABLE `eb_express` ( `id` mediumint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '快递公司id', `code` varchar(50) NOT NULL DEFAULT '' COMMENT '快递公司简称', `name` varchar(50) NOT NULL DEFAULT '' COMMENT '快递公司全称', `sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序', `is_show` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否显示', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `code` (`code`) USING BTREE, KEY `is_show` (`is_show`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='快递公司表'; LOCK TABLES `eb_express` WRITE; /*!40000 ALTER TABLE `eb_express` DISABLE KEYS */; INSERT INTO `eb_express` (`id`, `code`, `name`, `sort`, `is_show`) VALUES (1,'LIMINWL','利民物流',1,0), (2,'XINTIAN','鑫天顺物流',1,0), (3,'henglu','恒路物流',1,0), (4,'klwl','康力物流',1,0), (5,'meiguo','美国快递',1,0), (6,'a2u','A2U速递',1,0), (7,'benteng','奔腾物流',1,0), (8,'ahdf','德方物流',1,0), (9,'timedg','万家通',1,0), (10,'ztong','智通物流',1,0), (11,'xindan','新蛋物流',1,0), (12,'bgpyghx','挂号信',1,0), (13,'XFHONG','鑫飞鸿物流快递',1,0), (14,'ALP','阿里物流',1,0), (15,'BFWL','滨发物流',1,0), (16,'SJWL','宋军物流',1,0), (17,'SHUNFAWL','顺发物流',1,0), (18,'TIANHEWL','天河物流',1,0), (19,'YBWL','邮联物流',1,0), (20,'SWHY','盛旺货运',1,0), (21,'TSWL','汤氏物流',1,0), (22,'YUANYUANWL','圆圆物流',1,0), (23,'BALIANGWL','八梁物流',1,0), (24,'ZGWL','振刚物流',1,0), (25,'JIAYU','佳宇物流',1,0), (26,'SHHX','昊昕物流',1,0), (27,'ande','安得物流',1,0), (28,'ppbyb','贝邮宝',1,0), (29,'dida','递达快递',1,0), (30,'jppost','日本邮政',1,0), (31,'intmail','中国邮政',96,0), (32,'HENGCHENGWL','恒诚物流',1,0), (33,'HENGFENGWL','恒丰物流',1,0), (34,'gdems','广东ems快递',1,0), (35,'xlyt','祥龙运通',1,0), (36,'gjbg','国际包裹',1,0), (37,'uex','UEX',1,0), (38,'singpost','新加坡邮政',1,1), (39,'guangdongyouzhengwuliu','广东邮政',1,0), (40,'bht','BHT',1,0), (41,'cces','CCES快递',1,0), (42,'cloudexpress','CE易欧通国际速递',1,0), (43,'dasu','达速物流',1,0), (44,'pfcexpress','皇家物流',1,0), (45,'hjs','猴急送',1,0), (46,'huilian','辉联物流',1,0), (47,'huanqiu','环球速运',1,0), (48,'huada','华达快运',1,0), (49,'htwd','华通务达物流',1,0), (50,'hipito','海派通',1,0), (51,'hqtd','环球通达',1,0), (52,'airgtc','航空快递',1,0), (53,'haoyoukuai','好又快物流',1,0), (54,'hanrun','韩润物流',1,0), (55,'ccd','河南次晨达',1,0), (56,'hfwuxi','和丰同城',1,0), (57,'Sky','荷兰',1,0), (58,'hongxun','鸿讯物流',1,0), (59,'hongjie','宏捷国际物流',1,0), (60,'httx56','汇通天下物流',1,0), (61,'lqht','恒通快递',1,0), (62,'jinguangsudikuaijian','京广速递快件',1,0), (63,'junfengguoji','骏丰国际速递',1,0), (64,'jiajiatong56','佳家通',1,0), (65,'jrypex','吉日优派',1,0), (66,'jinchengwuliu','锦程国际物流',1,0), (67,'jgwl','景光物流',1,0), (68,'pzhjst','急顺通',1,0), (69,'ruexp','捷网俄全通',1,0), (70,'jmjss','金马甲',1,0), (71,'lanhu','蓝弧快递',1,0), (72,'ltexp','乐天速递',1,0), (73,'lutong','鲁通快运',1,0), (74,'ledii','乐递供应链',1,0), (75,'lundao','论道国际物流',1,0), (76,'mailikuaidi','麦力快递',1,0), (77,'mchy','木春货运',1,0), (78,'meiquick','美快国际物流',1,0), (79,'valueway','美通快递',1,0), (80,'nuoyaao','偌亚奥国际',1,0), (81,'euasia','欧亚专线',1,0), (82,'pca','澳大利亚PCA快递',1,0), (83,'pingandatengfei','平安达腾飞',1,0), (84,'pjbest','品骏快递',1,0), (85,'qbexpress','秦邦快运',1,0), (86,'quanxintong','全信通快递',1,0), (87,'quansutong','全速通国际快递',1,0), (88,'qinyuan','秦远物流',1,0), (89,'qichen','启辰国际物流',1,0), (90,'quansu','全速快运',1,0), (91,'qzx56','全之鑫物流',1,0), (92,'qskdyxgs','千顺快递',1,0), (93,'runhengfeng','全时速运',1,0), (94,'rytsd','日益通速递',1,0), (95,'ruidaex','瑞达国际速递',1,0), (96,'shiyun','世运快递',1,0), (97,'sfift','十方通物流',1,0), (98,'stkd','顺通快递',1,0), (99,'bgn','布谷鸟快递',1,0), (100,'jiahuier','佳惠尔快递',1,0), (101,'pingyou','小包',1,0), (102,'yumeijie','誉美捷快递',1,0), (103,'meilong','美龙快递',1,0), (104,'guangtong','广通速递',1,0), (105,'STARS','星晨急便',1,0), (106,'NANHANG','中国南方航空股份有限公司',1,0), (107,'lanbiao','蓝镖快递',1,0), (109,'baotongda','宝通达物流',1,0), (110,'dashun','大顺物流',1,0), (111,'dada','大达物流',1,0), (112,'fangfangda','方方达物流',1,0), (113,'hebeijianhua','河北建华物流',1,0), (114,'haolaiyun','好来运快递',1,0), (115,'jinyue','晋越快递',1,0), (116,'kuaitao','快淘快递',1,0), (117,'peixing','陪行物流',1,0), (118,'hkpost','香港邮政',1,0), (119,'ytfh','一统飞鸿快递',1,0), (120,'zhongxinda','中信达快递',1,0), (121,'zhongtian','中天快运',1,0), (122,'zuochuan','佐川急便',1,0), (123,'chengguang','程光快递',1,0), (124,'cszx','城市之星',1,0), (125,'chuanzhi','传志快递',1,0), (126,'feibao','飞豹快递',1,0), (127,'huiqiang','汇强快递',1,0), (128,'lejiedi','乐捷递',1,0), (129,'lijisong','成都立即送快递',1,0), (130,'minbang','民邦速递',1,0), (131,'ocs','OCS国际快递',1,0), (132,'santai','三态速递',1,0), (133,'saiaodi','赛澳递',1,0), (134,'jd','京东快递',1,0), (135,'zengyi','增益快递',1,0), (136,'fanyu','凡宇速递',1,0), (137,'fengda','丰达快递',1,0), (138,'coe','东方快递',1,0), (139,'ees','百福东方快递',1,0), (140,'disifang','递四方速递',1,0), (141,'rufeng','如风达快递',1,0), (142,'changtong','长通物流',1,0), (143,'chengshi100','城市100快递',1,0), (144,'feibang','飞邦物流',1,0), (145,'haosheng','昊盛物流',1,0), (146,'yinsu','音速速运',1,0), (147,'kuanrong','宽容物流',1,0), (148,'tongcheng','通成物流',1,0), (149,'tonghe','通和天下物流',1,0), (150,'zhima','芝麻开门',1,0), (151,'ririshun','日日顺物流',1,0), (152,'anxun','安迅物流',1,0), (153,'baiqian','百千诚国际物流',1,0), (154,'chukouyi','出口易',1,0), (155,'diantong','店通快递',1,0), (156,'dajin','大金物流',1,0), (157,'feite','飞特物流',1,0), (159,'gnxb','国内小包',1,0), (160,'huacheng','华诚物流',1,0), (161,'huahan','华翰物流',1,0), (162,'hengyu','恒宇运通',1,0), (163,'huahang','华航快递',1,0), (164,'jiuyi','久易快递',1,0), (165,'jiete','捷特快递',1,0), (166,'jingshi','京世物流',1,0), (167,'kuayue','跨越快递',1,0), (168,'mengsu','蒙速快递',1,0), (169,'nanbei','南北快递',1,0), (171,'pinganda','平安达快递',1,0), (172,'ruifeng','瑞丰速递',1,0), (173,'rongqing','荣庆物流',1,0), (174,'suijia','穗佳物流',1,0), (175,'simai','思迈快递',1,0), (176,'suteng','速腾快递',1,0), (177,'shengbang','晟邦物流',1,0), (178,'suchengzhaipei','速呈宅配',1,0), (179,'wuhuan','五环速递',1,0), (180,'xingchengzhaipei','星程宅配',1,0), (181,'yinjie','顺捷丰达',1,0), (183,'yanwen','燕文物流',1,0), (184,'zongxing','纵行物流',1,0), (185,'aae','AAE快递',1,0), (186,'dhl','DHL快递',1,0), (187,'feihu','飞狐快递',1,0), (188,'shunfeng','顺丰速运',92,1), (189,'spring','春风物流',1,0), (190,'yidatong','易达通快递',1,0), (191,'PEWKEE','彪记快递',1,0), (192,'PHOENIXEXP','凤凰快递',1,0), (193,'CNGLS','GLS快递',1,0), (194,'BHTEXP','华慧快递',1,0), (195,'B2B','卡行天下',1,0), (196,'PEISI','配思货运',1,0), (197,'SUNDAPOST','上大物流',1,0), (198,'SUYUE','苏粤货运',1,0), (199,'F5XM','伍圆速递',1,0), (200,'GZWENJIE','文捷航空速递',1,0), (201,'yuancheng','远成物流',1,0), (202,'dpex','DPEX快递',1,0), (203,'anjie','安捷快递',1,0), (204,'jldt','嘉里大通',1,0), (205,'yousu','优速快递',1,0), (206,'wanbo','万博快递',1,0), (207,'sure','速尔物流',1,0), (208,'sutong','速通物流',1,0), (209,'JUNCHUANWL','骏川物流',1,0), (210,'guada','冠达快递',1,0), (211,'dsu','D速快递',1,0), (212,'LONGSHENWL','龙胜物流',1,0), (213,'abc','爱彼西快递',1,0), (214,'eyoubao','E邮宝',1,0), (215,'aol','AOL快递',1,0), (216,'jixianda','急先达物流',1,0), (217,'haihong','山东海红快递',1,0), (218,'feiyang','飞洋快递',1,0), (219,'rpx','RPX保时达',1,0), (220,'zhaijisong','宅急送',1,0), (221,'tiantian','天天快递',99,0), (222,'yunwuliu','云物流',1,0), (223,'jiuye','九曳供应链',1,0), (224,'bsky','百世快运',1,0), (225,'higo','黑狗物流',1,0), (226,'arke','方舟速递',1,0), (227,'zwsy','中外速运',1,0), (228,'jxy','吉祥邮',1,0), (229,'aramex','Aramex',1,0), (230,'guotong','国通快递',1,0), (231,'jiayi','佳怡物流',1,0), (232,'longbang','龙邦快运',1,0), (233,'minhang','民航快递',1,0), (234,'quanyi','全一快递',1,0), (235,'quanchen','全晨快递',1,0), (236,'usps','USPS快递',1,0), (237,'xinbang','新邦物流',1,0), (238,'yuanzhi','元智捷诚快递',1,0), (239,'zhongyou','中邮物流',1,0), (240,'yuxin','宇鑫物流',1,0), (241,'cnpex','中环快递',1,0), (242,'shengfeng','盛丰物流',1,0), (243,'yuantong','圆通速递',97,0), (244,'jiayunmei','加运美物流',1,0), (245,'ywfex','源伟丰快递',1,0), (246,'xinfeng','信丰物流',1,0), (247,'wanxiang','万象物流',1,0), (248,'menduimen','门对门',1,0), (249,'mingliang','明亮物流',1,0), (250,'fengxingtianxia','风行天下',1,0), (251,'gongsuda','共速达物流',1,0), (253,'quanritong','全日通快递',1,0), (254,'ems','EMS',1,1), (255,'wanjia','万家物流',1,0), (256,'yuntong','运通快递',1,0), (257,'feikuaida','飞快达物流',1,0), (258,'haimeng','海盟速递',1,0), (259,'zhongsukuaidi','中速快件',1,0), (260,'yuefeng','越丰快递',1,0), (261,'shenghui','盛辉物流',1,0), (262,'datian','大田物流',1,0), (263,'quanjitong','全际通快递',1,0), (264,'longlangkuaidi','隆浪快递',1,0), (265,'neweggozzo','新蛋奥硕物流',1,0), (266,'shentong','申通快递',95,1), (267,'haiwaihuanqiu','海外环球',1,0), (268,'yad','源安达快递',1,0), (269,'jindawuliu','金大物流',1,0), (270,'sevendays','七天连锁',1,0), (271,'tnt','TNT快递',1,0), (272,'huayu','天地华宇物流',1,0), (273,'lianhaotong','联昊通快递',1,0), (274,'nengda','港中能达快递',1,0), (275,'LBWL','联邦物流',1,0), (276,'ontrac','onTrac',1,0), (277,'feihang','原飞航快递',1,0), (278,'bangsongwuliu','邦送物流',1,0), (279,'huaxialong','华夏龙物流',1,0), (280,'ztwy','中天万运快递',1,0), (281,'fkd','飞康达物流',1,0), (282,'anxinda','安信达快递',1,0), (283,'quanfeng','全峰快递',1,0), (284,'shengan','圣安物流',1,0), (285,'jiaji','佳吉物流',1,0), (286,'yunda','韵达快运',94,0), (287,'ups','UPS快递',1,0), (288,'debang','德邦物流',1,0), (289,'yafeng','亚风速递',1,0), (290,'kuaijie','快捷速递',98,0), (291,'huitong','百世快递',93,0), (293,'aolau','AOL澳通速递',1,0), (294,'anneng','安能物流',1,0), (295,'auexpress','澳邮中国快运',1,0), (296,'exfresh','安鲜达',1,0), (297,'bcwelt','BCWELT',1,0), (298,'youzhengguonei','挂号信',1,0), (299,'xiaohongmao','北青小红帽',1,0), (300,'lbbk','宝凯物流',1,0), (301,'byht','博源恒通',1,0), (302,'idada','百成大达物流',1,0), (303,'baitengwuliu','百腾物流',1,0), (304,'birdex','笨鸟海淘',1,0), (305,'bsht','百事亨通',1,0), (306,'dayang','大洋物流快递',1,0), (307,'dechuangwuliu','德创物流',1,0), (308,'donghanwl','东瀚物流',1,0), (309,'dfpost','达方物流',1,0), (310,'dongjun','东骏快捷物流',1,0), (311,'dindon','叮咚澳洲转运',1,0), (312,'dazhong','大众佐川急便',1,0), (313,'decnlh','德中快递',1,0), (314,'dekuncn','德坤供应链',1,0), (315,'eshunda','俄顺达',1,0), (316,'ewe','EWE全球快递',1,0), (317,'fedexuk','FedEx英国',1,0), (318,'fox','FOX国际速递',1,0), (319,'rufengda','凡客如风达',1,0), (320,'fandaguoji','颿达国际快递',1,0), (321,'hnfy','飞鹰物流',1,0), (322,'flysman','飞力士物流',1,0), (323,'sccod','丰程物流',1,0), (324,'farlogistis','泛远国际物流',1,0), (325,'gsm','GSM',1,0), (326,'gaticn','GATI快递',1,0), (327,'gts','GTS快递',1,0), (328,'gangkuai','港快速递',1,0), (329,'gtsd','高铁速递',1,0), (330,'tiandihuayu','华宇物流',1,0), (331,'huangmajia','黄马甲快递',1,0), (332,'ucs','合众速递',1,0), (333,'huoban','伙伴物流',1,0), (334,'nedahm','红马速递',1,0), (335,'huiwen','汇文配送',1,0), (336,'nmhuahe','华赫物流',1,0), (337,'hangyu','航宇快递',1,0), (338,'minsheng','闽盛物流',1,0), (339,'riyu','日昱物流',1,0), (340,'sxhongmajia','山西红马甲',1,0), (341,'syjiahuier','沈阳佳惠尔',1,0), (342,'shlindao','上海林道货运',1,0), (343,'shunjiefengda','顺捷丰达',1,0), (344,'subida','速必达物流',1,0), (345,'bphchina','速方国际物流',1,0), (346,'sendtochina','速递中国',1,0), (347,'suning','苏宁快递',1,0), (348,'sihaiet','四海快递',1,0), (349,'tianzong','天纵物流',1,0), (350,'chinatzx','同舟行物流',1,0), (351,'nntengda','腾达速递',1,0), (352,'sd138','泰国138',1,0), (353,'tongdaxing','通达兴物流',1,0), (354,'tlky','天联快运',1,0), (355,'youshuwuliu','UC优速快递',1,0), (356,'ueq','UEQ快递',1,0), (357,'weitepai','微特派快递',1,0), (358,'wtdchina','威时沛运',1,0), (359,'wzhaunyun','微转运',1,0), (360,'gswtkd','万通快递',1,0), (361,'wotu','渥途国际速运',1,0), (362,'xiyoute','希优特快递',1,0), (363,'xilaikd','喜来快递',1,0), (364,'xsrd','鑫世锐达',1,0), (365,'xtb','鑫通宝物流',1,0), (366,'xintianjie','信天捷快递',1,0), (367,'xaetc','西安胜峰',1,0), (368,'xianfeng','先锋快递',1,0), (369,'sunspeedy','新速航',1,0), (370,'xipost','西邮寄',1,0), (371,'sinatone','信联通',1,0), (372,'sunjex','新杰物流',1,0), (373,'yundaexus','韵达美国件',1,0), (374,'yxwl','宇鑫物流',1,0), (375,'yitongda','易通达',1,0), (376,'yiqiguojiwuliu','一柒物流',1,0), (377,'yilingsuyun','亿领速运',1,0), (378,'yujiawuliu','煜嘉物流',1,0), (379,'gml','英脉物流',1,0), (380,'leopard','云豹国际货运',1,0), (381,'czwlyn','云南中诚',1,0), (382,'sdyoupei','优配速运',1,0), (383,'yongchang','永昌物流',1,0), (384,'yufeng','御风速运',1,0), (385,'yamaxunwuliu','亚马逊物流',1,0), (386,'yousutongda','优速通达',1,0), (387,'yishunhang','亿顺航',1,0), (388,'yongwangda','永旺达快递',1,0), (389,'ecmscn','易满客',1,0), (390,'yingchao','英超物流',1,0), (391,'edlogistics','益递物流',1,0), (392,'yyexpress','远洋国际',1,0), (393,'onehcang','一号仓',1,0), (394,'ycgky','远成快运',1,0), (395,'lineone','一号线',1,0), (396,'ypsd','壹品速递',1,0), (397,'vipexpress','鹰运国际速递',1,0), (398,'el56','易联通达物流',1,0), (399,'yyqc56','一运全成物流',1,0), (400,'zhongtie','中铁快运',1,0), (401,'ZTKY','中铁物流',1,0), (402,'zzjh','郑州建华快递',1,0), (403,'zhongruisudi','中睿速递',1,0), (404,'zhongwaiyun','中外运速递',1,0), (405,'zengyisudi','增益速递',1,0), (406,'sujievip','郑州速捷',1,0), (407,'zhichengtongda','至诚通达快递',1,0), (408,'zhdwl','众辉达物流',1,0), (409,'kuachangwuliu','直邮易',1,0), (410,'topspeedex','中运全速',1,0), (411,'otobv','中欧快运',1,0), (412,'zsky123','准实快运',1,0), (413,'donghong','东红物流',1,0), (414,'kuaiyouda','快优达速递',1,0), (415,'balunzhi','巴伦支快递',1,0), (416,'hutongwuliu','户通物流',1,0), (417,'xianchenglian','西安城联速递',1,0), (418,'youbijia','邮必佳',1,0), (419,'feiyuan','飞远物流',1,0), (420,'chengji','城际速递',1,0), (421,'huaqi','华企快运',1,0), (422,'yibang','一邦快递',1,0), (423,'citylink','CityLink快递',1,0), (424,'meixi','美西快递',1,0), (425,'acs','ACS',1,0); /*!40000 ALTER TABLE `eb_express` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_shipping_templates # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_shipping_templates`; CREATE TABLE `eb_shipping_templates` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号', `name` varchar(255) NOT NULL COMMENT '模板名称', `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '计费方式', `appoint` tinyint(1) NOT NULL DEFAULT '0' COMMENT '指定包邮', `sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='运费模板'; LOCK TABLES `eb_shipping_templates` WRITE; /*!40000 ALTER TABLE `eb_shipping_templates` DISABLE KEYS */; INSERT INTO `eb_shipping_templates` (`id`, `name`, `type`, `appoint`, `sort`, `create_time`, `update_time`) VALUES, (1,'全国免费',1,0,9999,'2020-08-12 16:33:22','2020-08-12 16:33:22'), (2,'满100包邮',1,0,0,'2020-08-13 14:02:58','2020-08-13 14:02:58'); /*!40000 ALTER TABLE `eb_shipping_templates` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_shipping_templates_free # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_shipping_templates_free`; CREATE TABLE `eb_shipping_templates_free` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号', `temp_id` int(11) NOT NULL DEFAULT '0' COMMENT '模板ID', `city_id` int(11) NOT NULL DEFAULT '0' COMMENT '城市ID', `title` text COMMENT '描述', `number` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '包邮件数', `price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '包邮金额', `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '计费方式', `uniqid` varchar(32) NOT NULL DEFAULT '' COMMENT '分组唯一值', `status` tinyint(1) DEFAULT '0' COMMENT '是否无效', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='运费模板包邮'; LOCK TABLES `eb_shipping_templates_free` WRITE; /*!40000 ALTER TABLE `eb_shipping_templates_free` DISABLE KEYS */; INSERT INTO `eb_shipping_templates_free` (`id`, `temp_id`, `city_id`, `title`, `number`, `price`, `type`, `uniqid`, `status`, `create_time`, `update_time`) VALUES (5,5,1,NULL,1.00,0.10,1,'41bc204459e98565feaa2d3d42b29379',0,'2020-05-20 11:49:46','2020-05-20 11:49:46'), /*!40000 ALTER TABLE `eb_shipping_templates_free` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_shipping_templates_region # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_shipping_templates_region`; CREATE TABLE `eb_shipping_templates_region` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号', `temp_id` int(11) NOT NULL DEFAULT '0' COMMENT '模板ID', `city_id` int(11) NOT NULL DEFAULT '0' COMMENT '城市ID', `title` text COMMENT '描述', `first` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '首件', `first_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '首件运费', `renewal` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '续件', `renewal_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '续件运费', `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '计费方式', `uniqid` varchar(32) NOT NULL DEFAULT '' COMMENT '分组唯一值', `status` tinyint(1) DEFAULT '0' COMMENT '是否无效', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='运费模板指定区域费用'; LOCK TABLES `eb_shipping_templates_region` WRITE; /*!40000 ALTER TABLE `eb_shipping_templates_region` DISABLE KEYS */; INSERT INTO `eb_shipping_templates_region` (`id`, `temp_id`, `city_id`, `title`, `first`, `first_price`, `renewal`, `renewal_price`, `type`, `uniqid`, `status`, `create_time`, `update_time`) VALUES (5,3,1,NULL,0.10,0.00,0.00,0.10,1,'faa5e3155a45071259caead30d0212f8',0,'2020-05-20 11:45:53','2020-05-20 11:45:53'), /*!40000 ALTER TABLE `eb_shipping_templates_region` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_sms_record # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_sms_record`; CREATE TABLE `eb_sms_record` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '短信发送记录编号', `uid` varchar(255) NOT NULL COMMENT '短信平台账号', `phone` char(11) NOT NULL COMMENT '接受短信的手机号', `content` text NOT NULL COMMENT '短信内容', `add_ip` varchar(30) DEFAULT NULL COMMENT '添加记录ip', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `template` varchar(255) NOT NULL COMMENT '短信模板ID', `resultcode` int(6) unsigned NOT NULL COMMENT '状态码 100=成功,130=失败,131=空号,132=停机,133=关机,134=无状态', `record_id` int(11) unsigned NOT NULL COMMENT '发送记录id', `memo` text COMMENT '短信平台返回信息', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='短信发送记录表'; /*!40000 ALTER TABLE `eb_sms_record` ENABLE KEYS */; # Dump of table eb_store_bargain # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_bargain`; CREATE TABLE `eb_store_bargain` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '砍价商品ID', `product_id` int(11) unsigned NOT NULL COMMENT '关联商品ID', `title` varchar(255) NOT NULL COMMENT '砍价活动名称', `image` varchar(150) NOT NULL COMMENT '砍价活动图片', `unit_name` varchar(16) DEFAULT NULL COMMENT '单位名称', `stock` int(11) unsigned DEFAULT NULL COMMENT '库存', `sales` int(11) unsigned DEFAULT NULL COMMENT '销量', `images` varchar(2000) NOT NULL COMMENT '砍价商品轮播图', `start_time` int(11) unsigned NOT NULL COMMENT '砍价开启时间', `stop_time` int(11) unsigned NOT NULL COMMENT '砍价结束时间', `store_name` varchar(255) DEFAULT NULL COMMENT '砍价商品名称', `price` decimal(8,2) unsigned DEFAULT NULL COMMENT '砍价金额', `min_price` decimal(8,2) unsigned DEFAULT NULL COMMENT '砍价商品最低价', `num` int(11) unsigned DEFAULT NULL COMMENT '每次购买的砍价商品数量', `bargain_max_price` decimal(8,2) unsigned DEFAULT NULL COMMENT '用户每次砍价的最大金额', `bargain_min_price` decimal(8,2) unsigned DEFAULT NULL COMMENT '用户每次砍价的最小金额', `bargain_num` int(11) unsigned NOT NULL DEFAULT '1' COMMENT '用户每次砍价的次数', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '砍价状态 0(到砍价时间不自动开启) 1(到砍价时间自动开启时间)', `give_integral` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '反多少积分', `info` varchar(255) DEFAULT NULL COMMENT '砍价活动简介', `cost` decimal(8,2) unsigned DEFAULT NULL COMMENT '成本价', `sort` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '排序', `is_hot` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否推荐0不推荐1推荐', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除 0未删除 1删除', `add_time` int(11) unsigned DEFAULT NULL COMMENT '添加时间', `is_postage` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否包邮 0不包邮 1包邮', `postage` decimal(10,2) unsigned DEFAULT NULL COMMENT '邮费', `rule` text COMMENT '砍价规则', `look` int(11) unsigned DEFAULT '0' COMMENT '砍价商品浏览量', `share` int(11) unsigned DEFAULT '0' COMMENT '砍价商品分享量', `temp_id` int(11) DEFAULT NULL COMMENT '运费模板ID', `weight` decimal(8,2) DEFAULT '0.00' COMMENT '重量', `volume` decimal(8,2) DEFAULT '0.00' COMMENT '体积', `quota` int(10) NOT NULL DEFAULT '0' COMMENT '限购总数', `quota_show` int(10) NOT NULL DEFAULT '0' COMMENT '限量总数显示', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='砍价表'; /*!40000 ALTER TABLE `eb_store_bargain` ENABLE KEYS */; # Dump of table eb_store_bargain_user # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_bargain_user`; CREATE TABLE `eb_store_bargain_user` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户参与砍价表ID', `uid` int(11) unsigned DEFAULT NULL COMMENT '用户ID', `bargain_id` int(11) unsigned DEFAULT NULL COMMENT '砍价商品id', `bargain_price_min` decimal(8,2) unsigned DEFAULT NULL COMMENT '砍价的最低价', `bargain_price` decimal(8,2) DEFAULT NULL COMMENT '砍价金额', `price` decimal(8,2) unsigned DEFAULT NULL COMMENT '砍掉的价格', `status` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '状态 1参与中 2 活动结束参与失败 3活动结束参与成功', `add_time` int(11) unsigned DEFAULT NULL COMMENT '参与时间', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否取消', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户参与砍价表'; /*!40000 ALTER TABLE `eb_store_bargain_user` ENABLE KEYS */; # Dump of table eb_store_bargain_user_help # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_bargain_user_help`; CREATE TABLE `eb_store_bargain_user_help` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '砍价用户帮助表ID', `uid` int(11) unsigned DEFAULT NULL COMMENT '帮助的用户id', `bargain_id` int(11) unsigned DEFAULT NULL COMMENT '砍价商品ID', `bargain_user_id` int(11) unsigned DEFAULT NULL COMMENT '用户参与砍价表id', `price` decimal(8,2) unsigned DEFAULT NULL COMMENT '帮助砍价多少金额', `add_time` int(11) unsigned DEFAULT NULL COMMENT '添加时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='砍价用户帮助表'; /*!40000 ALTER TABLE `eb_store_bargain_user_help` ENABLE KEYS */; # Dump of table eb_store_cart # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_cart`; CREATE TABLE `eb_store_cart` ( `id` bigint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '购物车表ID', `uid` int(10) unsigned NOT NULL COMMENT '用户ID', `type` varchar(32) NOT NULL COMMENT '类型', `product_id` int(10) unsigned NOT NULL COMMENT '商品ID', `product_attr_unique` varchar(16) NOT NULL DEFAULT '' COMMENT '商品属性', `cart_num` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '商品数量', `is_new` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否为立即购买', `combination_id` int(11) unsigned DEFAULT '0' COMMENT '拼团id', `seckill_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '秒杀商品ID', `bargain_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '砍价id', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '已添加的商品是否有效状态', PRIMARY KEY (`id`) USING BTREE, KEY `user_id` (`uid`) USING BTREE, KEY `goods_id` (`product_id`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `uid_2` (`uid`) USING BTREE, KEY `uid_3` (`uid`,`is_new`) USING BTREE, KEY `type` (`type`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='购物车表'; /*!40000 ALTER TABLE `eb_store_cart` DISABLE KEYS */; # Dump of table eb_store_category # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_category`; CREATE TABLE `eb_store_category` ( `id` mediumint(11) NOT NULL AUTO_INCREMENT COMMENT '商品分类表ID', `pid` mediumint(11) NOT NULL COMMENT '父id', `cate_name` varchar(100) NOT NULL COMMENT '分类名称', `sort` mediumint(11) NOT NULL COMMENT '排序', `pic` varchar(128) NOT NULL DEFAULT '' COMMENT '图标', `is_show` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否推荐', `add_time` int(11) NOT NULL COMMENT '添加时间', PRIMARY KEY (`id`) USING BTREE, KEY `pid` (`pid`) USING BTREE, KEY `is_base` (`is_show`) USING BTREE, KEY `sort` (`sort`) USING BTREE, KEY `add_time` (`add_time`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品分类表'; LOCK TABLES `eb_store_category` WRITE; /*!40000 ALTER TABLE `eb_store_category` DISABLE KEYS */; INSERT INTO `eb_store_category` (`id`, `pid`, `cate_name`, `sort`, `pic`, `is_show`, `add_time`) VALUES (1,0,'热门推荐',1,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/cc3dd6914b08f81b91966518a45c01d2.png',1,1547205038), (2,1,'热门促销',0,'http://datong.crmeb.net/public/uploads/attach/2019/01/15/5c3dba1366885.jpg',1,1547205055), (3,1,'折扣专区',0,'http://datong.crmeb.net/public/uploads/attach/2019/01/15/5c3dc0ef27068.jpg',1,1547550363), (4,1,'新品上线',0,'http://datong.crmeb.net/public/uploads/attach/2019/01/15/5c3dbc6a38fab.jpg',1,1553783295), (6,0,'居家生活',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/458a135ce4c461e87e2fea82dda53774.jpg',1,1553783609), (7,6,'床垫',1,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/458a135ce4c461e87e2fea82dda53774.jpg',1,1553784473), (8,6,'灯具',0,'http://datong.crmeb.net/public/uploads/attach/2019/03/29/5c9def00c2882.png',1,1553784490), (9,0,'家电电器',90,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/2c9fd486092555d91efff5c6e5e383d6.jpg',1,1553852206), (10,0,'手机数码',1,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/9fa811693cba752db652e815296255f1.jpg',1,1553852227), (11,0,'智能设备',4,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/269f7725070f2bd8b9f0039685ad7de6.jpg',1,1553852259), (12,0,'影音设备',8,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/494ce9742e95101fffff0c21784f96f2.jpg',1,1553852288), (13,0,'服饰鞋帽',75,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/699f60974cf32e88c8f1960b852a43c3.jpg',1,1553852314), (14,0,'餐厨厨房',2,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/b89f34e31f5a3ea4b0fcdc039e31505a.jpg',1,1553852353), (15,0,'洗护健康',1,'',0,1553852370), (16,0,'日杂用品',1,'',0,1553852390), (17,0,'出行交通',2,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/2052d5c3176b875c5bc58a879b0ba389.jpg',1,1553852413), (19,6,'家具',0,'http://datong.crmeb.net/public/uploads/attach/2019/03/29/5c9def5fa968c.png',1,1553854308), (20,6,'床品件套',0,'http://datong.crmeb.net/public/uploads/attach/2019/03/29/5c9df11e13742.png',1,1553854755), (21,6,'家饰花卉',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/a427442af073c12aa05a09feb4b64bd0.jpg',1,1553854835), (22,6,'布艺软装',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/29f36a3d66dccbbdd47e64deaed934cd.jpg',1,1553854908), (28,10,'手机',30,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/25fad7ca52ed5cc9208651cf7fed8f60.jpg',1,1566354915), (29,9,'电视',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/2c9fd486092555d91efff5c6e5e383d6.jpg',1,1584514229), (30,9,'空调',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/2ab5ea85f26c5bcdf2559136c7a3b22d.jpg',1,1584514327), (31,9,'洗衣机',60,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/f1c66db0b9bb23d7b36013d794492d67.jpg',1,1584514581), (32,12,'相机',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/494ce9742e95101fffff0c21784f96f2.jpg',1,1584514751), (33,12,'耳机',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/0daf16b63c6b674ba3144e59bb6720ce.jpg',1,1584514959), (34,12,'音响',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/a332530009222c8d85cffab489624979.jpg',1,1584515257), (35,11,'手环',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/b1235d5c5eda4a8cca0a66bf1f48c509.jpg',1,1584515412), (36,11,'无人机',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/269f7725070f2bd8b9f0039685ad7de6.jpg',1,1584515517), (37,11,'机器人',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/2efb611e2d14108fdf625df9e878f702.jpg',1,1584515754), (38,17,'车载电器',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/2052d5c3176b875c5bc58a879b0ba389.jpg',1,1584521861), (39,17,'美容清洗',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/69ae5e95e9b325d33114ead0e0c8c54e.jpg',1,1584522270), (40,17,'坐垫',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/164d3f2cb6a62f5509a768ac83d930fc.jpg',1,1584522378), (41,14,'烹饪锅具',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/a71fd979c8048b1c4f9d4db93e095834.jpg',1,1584522516), (42,14,'油烟灶具',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/b89f34e31f5a3ea4b0fcdc039e31505a.jpg',1,1584522681), (43,14,'茶具套装',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/e7f47f490eba32bdeff426748e7ce7a2.jpg',1,1584522881), (44,13,'时尚女装',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200319/677547eabb1817224b95cd89283df0fa.jpg',1,1584523636), (45,13,'精品男装',90,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/699f60974cf32e88c8f1960b852a43c3.jpg',1,1584523745), (46,13,'香水彩妆',70,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/46410cfa26b5e1faadcf89ee0b3b631b.jpg',1,1584523853), (47,13,'配饰',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/fb548093870b1b6224312d851061ea1c.jpg',1,1584523968), (48,13,'箱包',80,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/eda281cf0adaee0e888c9cea545db19c.jpg',1,1584524172), (49,13,'时尚运动',100,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/b912ff52f4023da0ada306976f56b3e6.jpg',1,1584524292), (50,10,'笔记本',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/1a3f8ec561f80b0430cc46cc7b085c4d.jpg',1,1584524573), (51,10,'智能锁',0,'http://kaifa.crmeb.net/uploads/attach/2020/03/20200318/9fa811693cba752db652e815296255f1.jpg',1,1584524666); /*!40000 ALTER TABLE `eb_store_category` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_store_combination # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_combination`; CREATE TABLE `eb_store_combination` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `product_id` int(10) unsigned NOT NULL COMMENT '商品id', `mer_id` int(10) unsigned DEFAULT '0' COMMENT '商户id', `image` varchar(255) NOT NULL COMMENT '推荐图', `images` varchar(2000) NOT NULL COMMENT '轮播图', `title` varchar(255) NOT NULL COMMENT '活动标题', `attr` varchar(255) DEFAULT NULL COMMENT '活动属性', `people` int(2) unsigned NOT NULL COMMENT '参团人数', `info` varchar(255) NOT NULL COMMENT '简介', `price` decimal(10,2) unsigned NOT NULL COMMENT '价格', `sort` int(10) unsigned NOT NULL COMMENT '排序', `sales` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '销量', `stock` int(10) unsigned NOT NULL COMMENT '库存', `add_time` varchar(128) NOT NULL COMMENT '添加时间', `is_host` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '推荐', `is_show` tinyint(1) unsigned NOT NULL COMMENT '商品状态', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0', `combination` tinyint(1) unsigned NOT NULL DEFAULT '1', `mer_use` tinyint(1) unsigned DEFAULT NULL COMMENT '商户是否可用1可用0不可用', `is_postage` tinyint(1) unsigned NOT NULL COMMENT '是否包邮1是0否', `postage` decimal(10,2) unsigned NOT NULL COMMENT '邮费', `start_time` int(11) unsigned NOT NULL COMMENT '拼团开始时间', `stop_time` int(11) unsigned NOT NULL COMMENT '拼团结束时间', `effective_time` int(11) NOT NULL DEFAULT '0' COMMENT '拼团订单有效时间', `cost` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '拼图商品成本', `browse` int(11) DEFAULT '0' COMMENT '浏览量', `unit_name` varchar(32) NOT NULL DEFAULT '' COMMENT '单位名', `temp_id` int(11) DEFAULT NULL COMMENT '运费模板ID', `weight` decimal(8,2) DEFAULT '0.00' COMMENT '重量', `volume` decimal(8,2) DEFAULT '0.00' COMMENT '体积', `num` int(11) DEFAULT NULL COMMENT '单次购买数量', `quota` int(10) NOT NULL DEFAULT '0' COMMENT '限购总数', `quota_show` int(10) NOT NULL DEFAULT '0' COMMENT '限量总数显示', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='拼团商品表'; /*!40000 ALTER TABLE `eb_store_combination` ENABLE KEYS */; # Dump of table eb_store_coupon # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_coupon`; CREATE TABLE `eb_store_coupon` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '优惠券表ID', `name` varchar(64) NOT NULL DEFAULT '' COMMENT '优惠券名称', `money` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '兑换的优惠券面值', `is_limited` tinyint(1) DEFAULT '0' COMMENT '是否限量, 默认0 不限量, 1限量', `total` int(11) NOT NULL DEFAULT '0' COMMENT '发放总数', `last_total` int(11) DEFAULT '0' COMMENT '剩余数量', `use_type` tinyint(2) NOT NULL DEFAULT '1' COMMENT '使用类型 1 全场通用, 2 商品券, 3 品类券', `primary_key` varchar(255) NOT NULL DEFAULT '' COMMENT '所属商品id / 分类id', `min_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '最低消费,0代表不限制', `receive_start_time` timestamp NOT NULL COMMENT '可领取开始时间', `receive_end_time` timestamp NULL DEFAULT NULL COMMENT '可领取结束时间', `is_fixed_time` tinyint(1) DEFAULT '0' COMMENT '是否固定使用时间, 默认0 否, 1是', `use_start_time` timestamp NULL DEFAULT NULL COMMENT '可使用时间范围 开始时间', `use_end_time` timestamp NULL DEFAULT NULL COMMENT '可使用时间范围 结束时间', `day` int(4) DEFAULT '0' COMMENT '天数', `type` tinyint(2) NOT NULL DEFAULT '1' COMMENT '优惠券类型 1 手动领取, 2 新人券, 3 赠送券', `sort` int(11) unsigned NOT NULL DEFAULT '1' COMMENT '排序', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态(0:关闭,1:开启)', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除 状态(0:否,1:是)', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `state` (`status`) USING BTREE, KEY `is_del` (`is_del`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='优惠券表'; /*!40000 ALTER TABLE `eb_store_coupon` ENABLE KEYS */; # Dump of table eb_store_coupon_user # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_coupon_user`; CREATE TABLE `eb_store_coupon_user` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', `coupon_id` int(10) NOT NULL COMMENT '优惠券发布id', `cid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '兑换的项目id', `uid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '领取人id', `name` varchar(32) NOT NULL DEFAULT '' COMMENT '优惠券名称', `money` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '优惠券的面值', `min_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '最低消费多少金额可用优惠券', `type` varchar(32) NOT NULL DEFAULT 'send' COMMENT '获取方式,send后台发放, 用户领取 get', `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态(0:未使用,1:已使用, 2:已失效)', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `start_time` timestamp NULL DEFAULT NULL COMMENT '开始使用时间', `end_time` timestamp NULL DEFAULT NULL COMMENT '过期时间', `use_time` timestamp NULL DEFAULT NULL COMMENT '使用时间', `use_type` tinyint(1) DEFAULT '1' COMMENT '使用类型 1 全场通用, 2 商品券, 3 品类券', `primary_key` varchar(255) DEFAULT NULL COMMENT '所属商品id / 分类id', PRIMARY KEY (`id`) USING BTREE, KEY `cid` (`cid`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `end_time` (`end_time`) USING BTREE, KEY `status` (`status`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='优惠券记录表'; /*!40000 ALTER TABLE `eb_store_coupon_user` ENABLE KEYS */; # Dump of table eb_store_order # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_order`; CREATE TABLE `eb_store_order` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '订单ID', `order_id` varchar(32) NOT NULL COMMENT '订单号', `uid` int(11) unsigned NOT NULL COMMENT '用户id', `real_name` varchar(32) NOT NULL COMMENT '用户姓名', `user_phone` varchar(18) NOT NULL COMMENT '用户电话', `user_address` varchar(100) NOT NULL COMMENT '详细地址', `freight_price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '运费金额', `total_num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '订单商品总数', `total_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '订单总价', `total_postage` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '邮费', `pay_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '实际支付金额', `pay_postage` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '支付邮费', `deduction_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '抵扣金额', `coupon_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '优惠券id', `coupon_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '优惠券金额', `paid` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '支付状态', `pay_time` timestamp NULL DEFAULT NULL COMMENT '支付时间', `pay_type` varchar(32) NOT NULL COMMENT '支付方式', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '订单状态(-1 : 申请退款 -2 : 退货成功 0:待发货;1:待收货;2:已收货,待评价;3:已完成;)', `refund_status` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0 未退款 1 申请中 2 已退款', `refund_reason_wap_img` varchar(255) DEFAULT NULL COMMENT '退款图片', `refund_reason_wap_explain` varchar(255) DEFAULT NULL COMMENT '退款用户说明', `refund_reason_wap` varchar(255) DEFAULT NULL COMMENT '前台退款原因', `refund_reason` varchar(255) DEFAULT NULL COMMENT '不退款的理由', `refund_reason_time` timestamp NULL DEFAULT NULL COMMENT '退款时间', `refund_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退款金额', `delivery_name` varchar(64) DEFAULT NULL COMMENT '快递名称/送货人姓名', `delivery_type` varchar(32) DEFAULT NULL COMMENT '发货类型', `delivery_id` varchar(64) DEFAULT NULL COMMENT '快递单号/手机号', `gain_integral` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '消费赚取积分', `use_integral` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '使用积分', `back_integral` decimal(8,2) unsigned DEFAULT NULL COMMENT '给用户退了多少积分', `mark` varchar(512) NOT NULL COMMENT '备注', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除', `unique` char(32) NOT NULL COMMENT '唯一id(md5加密)类似id', `remark` varchar(512) DEFAULT NULL COMMENT '管理员备注', `mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户ID', `is_mer_check` tinyint(3) unsigned NOT NULL DEFAULT '0', `combination_id` int(11) unsigned DEFAULT '0' COMMENT '拼团商品id0一般商品', `pink_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '拼团id 0没有拼团', `cost` decimal(8,2) unsigned NOT NULL COMMENT '成本价', `seckill_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '秒杀商品ID', `bargain_id` int(11) unsigned DEFAULT '0' COMMENT '砍价id', `verify_code` varchar(12) NOT NULL DEFAULT '' COMMENT '核销码', `store_id` int(11) NOT NULL DEFAULT '0' COMMENT '门店id', `shipping_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '配送方式 1=快递 ,2=门店自提', `clerk_id` int(11) NOT NULL DEFAULT '0' COMMENT '店员id', `is_channel` tinyint(1) unsigned DEFAULT '0' COMMENT '支付渠道(0微信公众号1微信小程序)', `is_remind` tinyint(1) unsigned DEFAULT '0' COMMENT '消息提醒', `is_system_del` tinyint(1) DEFAULT '0' COMMENT '后台是否删除', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `order_id_2` (`order_id`,`uid`) USING BTREE, UNIQUE KEY `unique` (`unique`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `add_time` (`create_time`) USING BTREE, KEY `pay_price` (`pay_price`) USING BTREE, KEY `paid` (`paid`) USING BTREE, KEY `pay_time` (`pay_time`) USING BTREE, KEY `pay_type` (`pay_type`) USING BTREE, KEY `status` (`status`) USING BTREE, KEY `is_del` (`is_del`) USING BTREE, KEY `coupon_id` (`coupon_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='订单表'; /*!40000 ALTER TABLE `eb_store_order` ENABLE KEYS */; # Dump of table eb_store_order_info # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_order_info`; CREATE TABLE `eb_store_order_info` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', `order_id` int(11) unsigned NOT NULL COMMENT '订单id', `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商品ID', `info` text NOT NULL COMMENT '购买东西的详细信息', `unique` char(32) NOT NULL COMMENT '唯一id', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`), UNIQUE KEY `oid` (`order_id`,`unique`) USING BTREE, KEY `product_id` (`product_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='订单购物详情表'; # Dump of table eb_store_order_status # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_order_status`; CREATE TABLE `eb_store_order_status` ( `oid` int(10) unsigned NOT NULL COMMENT '订单id', `change_type` varchar(32) NOT NULL COMMENT '操作类型', `change_message` varchar(256) NOT NULL COMMENT '操作备注', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '操作时间', KEY `oid` (`oid`) USING BTREE, KEY `change_type` (`change_type`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='订单操作记录表'; # Dump of table eb_store_pink # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_pink`; CREATE TABLE `eb_store_pink` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `uid` int(10) unsigned NOT NULL COMMENT '用户id', `order_id` varchar(32) NOT NULL COMMENT '订单id 生成', `order_id_key` int(10) unsigned NOT NULL COMMENT '订单id 数据库', `total_num` int(10) unsigned NOT NULL COMMENT '购买商品个数', `total_price` decimal(10,2) unsigned NOT NULL COMMENT '购买总金额', `cid` int(10) unsigned NOT NULL COMMENT '拼团商品id', `pid` int(10) unsigned NOT NULL COMMENT '商品id', `people` int(10) unsigned NOT NULL COMMENT '拼图总人数', `price` decimal(10,2) unsigned NOT NULL COMMENT '拼团商品单价', `add_time` varchar(24) NOT NULL COMMENT '开始时间', `stop_time` varchar(24) NOT NULL, `k_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '团长id 0为团长', `is_tpl` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否发送模板消息0未发送1已发送', `is_refund` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否退款 0未退款 1已退款', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态1进行中2已完成3未完成', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='拼团表'; # Dump of table eb_store_product # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_product`; CREATE TABLE `eb_store_product` ( `id` mediumint(11) NOT NULL AUTO_INCREMENT COMMENT '商品id', `mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户Id(0为总后台管理员创建,不为0的时候是商户后台创建)', `image` varchar(256) NOT NULL COMMENT '商品图片', `slider_image` varchar(2000) NOT NULL COMMENT '轮播图', `store_name` varchar(128) NOT NULL COMMENT '商品名称', `store_info` varchar(256) NOT NULL COMMENT '商品简介', `keyword` varchar(256) NOT NULL COMMENT '关键字', `bar_code` varchar(15) NOT NULL DEFAULT '' COMMENT '商品条码(一维码)', `cate_id` varchar(64) NOT NULL COMMENT '分类id', `price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '商品价格', `vip_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '会员价格', `ot_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '市场价', `postage` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '邮费', `unit_name` varchar(32) NOT NULL COMMENT '单位名', `sort` smallint(11) NOT NULL DEFAULT '0' COMMENT '排序', `sales` mediumint(11) unsigned NOT NULL DEFAULT '0' COMMENT '销量', `stock` mediumint(11) unsigned NOT NULL DEFAULT '0' COMMENT '库存', `is_show` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态(0:未上架,1:上架)', `is_hot` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否热卖', `is_benefit` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否优惠', `is_best` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否精品', `is_new` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否新品', `add_time` int(11) unsigned NOT NULL COMMENT '添加时间', `is_postage` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否包邮', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除', `mer_use` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '商户是否代理 0不可代理1可代理', `give_integral` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '获得积分', `cost` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '成本价', `is_seckill` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '秒杀状态 0 未开启 1已开启', `is_bargain` tinyint(1) unsigned DEFAULT NULL COMMENT '砍价状态 0未开启 1开启', `is_good` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否优品推荐', `is_sub` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否单独分佣', `ficti` mediumint(11) DEFAULT '100' COMMENT '虚拟销量', `browse` int(11) DEFAULT '0' COMMENT '浏览量', `code_path` varchar(64) NOT NULL DEFAULT '' COMMENT '商品二维码地址(用户小程序海报)', `soure_link` varchar(255) DEFAULT '' COMMENT '淘宝京东1688类型', `video_link` varchar(200) NOT NULL DEFAULT '' COMMENT '主图视频链接', `temp_id` int(11) NOT NULL DEFAULT '1' COMMENT '运费模板ID', `spec_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '规格 0单 1多', `activity` varchar(255) NOT NULL DEFAULT '' COMMENT '活动显示排序1=秒杀,2=砍价,3=拼团', PRIMARY KEY (`id`) USING BTREE, KEY `cate_id` (`cate_id`) USING BTREE, KEY `is_hot` (`is_hot`) USING BTREE, KEY `is_benefit` (`is_benefit`) USING BTREE, KEY `is_best` (`is_best`) USING BTREE, KEY `is_new` (`is_new`) USING BTREE, KEY `toggle_on_sale, is_del` (`is_del`) USING BTREE, KEY `price` (`price`) USING BTREE, KEY `is_show` (`is_show`) USING BTREE, KEY `sort` (`sort`) USING BTREE, KEY `sales` (`sales`) USING BTREE, KEY `add_time` (`add_time`) USING BTREE, KEY `is_postage` (`is_postage`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='商品表'; LOCK TABLES `eb_store_product` WRITE; /*!40000 ALTER TABLE `eb_store_product` DISABLE KEYS */; INSERT INTO `eb_store_product` (`id`, `mer_id`, `image`, `slider_image`, `store_name`, `store_info`, `keyword`, `bar_code`, `cate_id`, `price`, `vip_price`, `ot_price`, `postage`, `unit_name`, `sort`, `sales`, `stock`, `is_show`, `is_hot`, `is_benefit`, `is_best`, `is_new`, `add_time`, `is_postage`, `is_del`, `mer_use`, `give_integral`, `cost`, `is_seckill`, `is_bargain`, `is_good`, `is_sub`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `spec_type`, `activity`) VALUES (84,0,'image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','[\"image/product/2020/07/30/36358bf3f52e40f4b8f451e470e2279arb99p3exzl.jpg\",\"image/product/2020/07/30/40e193eec1fa4650a6f519305c4ea4c615s1dgmjmt.jpg\",\"image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\"]','新勿动','新勿动','新勿动','','179',999.00,0.00,999.00,0.00,'个',0,5,19980,0,0,0,0,0,1597298929,0,0,0,0.00,0.00,0,NULL,0,0,0,0,'','','',72,1,''), (99,0,'','[]','stivepeim测试勿动','stivepeim测试勿动','stivepeim测试勿动','','5,9,14,17,18,10,12,15,16,19,20',9.00,0.00,9.00,0.00,'T',1,9971,9969,0,0,0,0,0,1597214734,0,0,0,1.00,0.00,0,NULL,1,0,1,0,'','','',69,1,''), (100,0,'image/content/2020/08/12/13813b1c58914aeda67d8a4ebc4f8aef21sje7kyiy.jpg','[\"image/setting/2020/08/12/71f30b58a2da4fc59e20e28cb6c36299v8j7iqamdq.png\",\"image/content/2020/08/11/d9e18566775f4ca0a9d64bc986ad777ah43lkqg6aq.jpg\"]','测试(不要删)','阿萨斯','阿萨斯','','191',0.00,0.00,100.00,0.00,'个',0,0,10,1,1,1,1,1,1597305572,0,0,0,0.00,0.00,0,NULL,1,0,0,0,'','','',73,0,''), (101,0,'image/content/2020/08/10/1938287114874149a87250f35c7c9e4f8dlna48p66.jpg','[\"image/content/2020/08/10/30003ce63ff8423286448c2726e7c8ffm9g4fipvvc.png\",\"image/content/2020/08/10/8ce87292dbd1472a9c0189612750a698mn9oqrqfzi.png\",\"image/content/2020/08/10/ad3bd819f1e84caeabbb858d0f1cef8eanuapqav4n.jpg\",\"image/content/2020/08/10/9a12252ddc7243278a3a58a88d1718fbltp4w2lg5g.png\"]','adidas春季新品adidas-9087明星同款/春节贺岁商品/活动商品','adidas春季新品adidas-9087明星同款/春节贺岁商品/活动商品','adidas春季新品adidas-9087明星同款/春节贺岁商品/活动商品','','252',5.00,0.00,123.00,0.00,'双',10,0,12,0,1,1,1,1,1597291178,0,0,0,10.00,0.00,0,NULL,1,0,10,0,'','','',70,0,''), (102,0,'image/content/2020/08/10/3fc403bcde39410b8d993796ad2847bf7mz1nt5q8e.jpg','[\"image/content/2020/08/10/3fc403bcde39410b8d993796ad2847bf7mz1nt5q8e.jpg\"]','是的好时机(测试2)','收到','是的是的','','191,197,198',20.00,0.00,20.00,0.00,'个',0,37,35,0,1,1,1,1,1597114079,0,0,0,0.00,0.00,0,NULL,1,0,0,0,'','','',73,1,''), (115,0,'image/setting/2020/08/12/71f30b58a2da4fc59e20e28cb6c36299v8j7iqamdq.png','[\"image/setting/2020/08/12/71f30b58a2da4fc59e20e28cb6c36299v8j7iqamdq.png\"]','马敏娟(我的测试)','阿萨','阿萨斯','','212',20.00,0.00,50.00,0.00,'个',0,200,196,1,1,1,1,1,1597302143,0,0,0,0.00,0.00,0,NULL,1,0,500,0,'','','',85,0,''), (116,0,'image/content/2020/08/13/9ad70272e4094fb9993a849b89a7b4afcorpd807b5.png','[\"image/store/2020/08/13/5771a123b9a24666b5cdcf531f7744d6grduvuarjw.png\",\"image/content/2020/08/13/9ad70272e4094fb9993a849b89a7b4afcorpd807b5.png\",\"image/content/2020/08/13/1d309020b173440a818fd3f76d58030fk7xdl9bdpz.png\",\"image/maintain/2020/08/13/51f0328634934883a994abb33173129fgcar4l6l8l.png\",\"image/setting/2020/08/12/71f30b58a2da4fc59e20e28cb6c36299v8j7iqamdq.png\",\"image/content/2020/08/12/13813b1c58914aeda67d8a4ebc4f8aef21sje7kyiy.jpg\"]','测试banner图imgPath','测试banner图imgPath测试banner图imgPath','测试banner图imgPath','','246,248,258,273,274,275,276,277,279',7.00,0.00,7.00,0.00,'T',0,0,3108,1,0,1,0,0,1597297716,0,0,0,1.00,0.00,0,NULL,1,0,1,0,'','','',89,1,''), (117,0,'image/store/2020/08/13/5771a123b9a24666b5cdcf531f7744d6grduvuarjw.png','[\"image/store/2020/08/13/5771a123b9a24666b5cdcf531f7744d6grduvuarjw.png\",\"image/content/2020/08/13/9ad70272e4094fb9993a849b89a7b4afcorpd807b5.png\",\"image/content/2020/08/13/1d309020b173440a818fd3f76d58030fk7xdl9bdpz.png\",\"image/maintain/2020/08/13/51f0328634934883a994abb33173129fgcar4l6l8l.png\",\"image/setting/2020/08/12/71f30b58a2da4fc59e20e28cb6c36299v8j7iqamdq.png\",\"image/content/2020/08/12/13813b1c58914aeda67d8a4ebc4f8aef21sje7kyiy.jpg\",\"image/store/2020/08/11/c79e9cda47db47748da64fd5bd4d1a30l2wpoycstu.png\",\"image/content/2020/08/11/d9e18566775f4ca0a9d64bc986ad777ah43lkqg6aq.jpg\"]','测试banner图imgPathAgain','测试banner图imgPathAgain','测试banner图imgPathAgain','','246,248,258,273,274,275,276,277,279',8888.00,0.00,888.00,0.00,'T',1,0,88888,1,0,1,0,0,1597297901,0,0,0,1.00,0.00,0,NULL,1,0,1,0,'','','',89,1,''), (118,0,'image/content/2020/08/13/1be6660a6769401795b0703d12f9f2a8wdgogu15d2.jpg','[\"image/content/2020/08/13/f71efcef9e5a4341a31f229289706142xpq50p1fyx.jpg\",\"image/content/2020/08/13/1be6660a6769401795b0703d12f9f2a8wdgogu15d2.jpg\"]','负离子护发吹风机 白色','负离子护发吹风机 白色','吹风机','','246,248,258,296,297',1.00,0.00,100.00,0.00,'个',0,0,50,1,0,1,0,1,1597304895,0,0,0,0.00,0.00,0,NULL,1,0,20,0,'','','',89,0,''), (123,0,'image/store/2020/08/13/5771a123b9a24666b5cdcf531f7744d6grduvuarjw.png','[\"image/store/2020/08/13/5771a123b9a24666b5cdcf531f7744d6grduvuarjw.png\",\"image/content/2020/08/13/1d309020b173440a818fd3f76d58030fk7xdl9bdpz.png\",\"image/maintain/2020/08/13/51f0328634934883a994abb33173129fgcar4l6l8l.png\",\"image/setting/2020/08/12/71f30b58a2da4fc59e20e28cb6c36299v8j7iqamdq.png\",\"image/content/2020/08/12/13813b1c58914aeda67d8a4ebc4f8aef21sje7kyiy.jpg\",\"image/store/2020/08/11/c79e9cda47db47748da64fd5bd4d1a30l2wpoycstu.png\",\"image/content/2020/08/11/d9e18566775f4ca0a9d64bc986ad777ah43lkqg6aq.jpg\"]','testImgPath1','testImgPath1','testImgPath1','','246,248,258,273,274,275,276,277,279,285,286,287,288,289,290',3.00,0.00,3.00,0.00,'T',1,0,3,0,1,1,1,1,1597299296,0,0,0,1.00,0.00,0,NULL,1,0,1,0,'','','',69,0,''), (124,0,'image/content/2020/08/13/421de3ec45a7462e855324463743c5f8wdto4m4hof.jpg','[\"image/content/2020/08/13/421de3ec45a7462e855324463743c5f8wdto4m4hof.jpg\",\"image/content/2020/08/13/c2c40197c8ed4bff9a0297fdc3d908357b3qpqtv8s.jpg\"]','女士竹纤维亲肤舒适打底裙家居服 粉色 七分袖 均码L','女士竹纤维亲肤舒适打底裙家居服 ','七分袖','','246',99.00,0.00,298.00,0.00,'件',0,0,100,1,1,1,1,1,1597299613,0,0,0,0.00,0.00,0,NULL,1,0,0,0,'','','',89,0,''), (125,0,'image/content/2020/08/13/e3ab04e8645d4018b86c37e8bd5e8532ph4r9xmziw.png','[\"image/content/2020/08/13/e3ab04e8645d4018b86c37e8bd5e8532ph4r9xmziw.png\",\"image/content/2020/08/13/42b5167b93a44430ba86acc8bf666de3h2owh5walv.png\",\"image/content/2020/08/13/9ad70272e4094fb9993a849b89a7b4afcorpd807b5.png\",\"image/content/2020/08/13/1d309020b173440a818fd3f76d58030fk7xdl9bdpz.png\",\"image/setting/2020/08/12/71f30b58a2da4fc59e20e28cb6c36299v8j7iqamdq.png\",\"image/content/2020/08/12/13813b1c58914aeda67d8a4ebc4f8aef21sje7kyiy.jpg\",\"image/content/2020/08/11/7c9f696b191e49f2ad935fa4f63ea1d3uq9j4ff4d4.jpg\"]','test详情图片','test详情图片','test详情图片','','246,248,258,273,274,275,276,277,279,285,286,287',65.00,0.00,65.00,0.00,'T',1,0,65,1,1,1,1,1,1597299647,0,0,0,1.00,0.00,0,NULL,1,0,1,0,'','','',69,0,''), (126,0,'image/content/2020/08/13/1d309020b173440a818fd3f76d58030fk7xdl9bdpz.png','[\"image/content/2020/08/13/9ad70272e4094fb9993a849b89a7b4afcorpd807b5.png\",\"image/content/2020/08/13/1d309020b173440a818fd3f76d58030fk7xdl9bdpz.png\",\"image/content/2020/08/13/1d309020b173440a818fd3f76d58030fk7xdl9bdpz.png\"]','潮款女士大衣','','大衣','','246',50.00,0.00,200.00,0.00,'件',1,0,7100,1,0,0,0,0,1597305134,0,0,0,0.00,0.00,0,NULL,1,0,0,0,'','','',98,1,''), (128,0,'image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','[\"image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png\",\"image/content/2020/08/13/32bd397a3d7a4ae9b3155d999785500b5ulxa373fz.png\",\"image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png\",\"image/content/2020/08/13/e3ab04e8645d4018b86c37e8bd5e8532ph4r9xmziw.png\",\"image/content/2020/08/13/42b5167b93a44430ba86acc8bf666de3h2owh5walv.png\"]','苹果 / iPhone 11 Pro','苹果 / iPhone 11 Pro','苹果 / iPhone 11 Pro','','297',1000.00,0.00,6000.00,0.00,'件',999,0,120,1,1,1,1,1,1597305492,0,0,0,100.00,0.00,0,NULL,1,0,89,0,'','','',85,1,''); /*!40000 ALTER TABLE `eb_store_product` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_store_product_attr # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_product_attr`; CREATE TABLE `eb_store_product_attr` ( `id` mediumint(11) NOT NULL AUTO_INCREMENT COMMENT '主键', `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商品ID', `attr_name` varchar(32) NOT NULL COMMENT '属性名', `attr_values` varchar(256) NOT NULL COMMENT '属性值', `type` tinyint(1) DEFAULT '0' COMMENT '活动类型 0=商品,1=秒杀,2=砍价,3=拼团', PRIMARY KEY (`id`), KEY `store_id` (`product_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='商品属性表'; LOCK TABLES `eb_store_product_attr` WRITE; /*!40000 ALTER TABLE `eb_store_product_attr` DISABLE KEYS */; INSERT INTO `eb_store_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`) VALUES (306,80,'颜色','白色,黑色,红色,蓝色',0), (307,80,'大小','L,XL,XXL,XXXL,S',0), (308,80,'T1','1,2,3,4',0), (309,80,'T2','a,b,c',0), (314,81,'颜色','白色,黑色,红色,蓝色',0), (315,81,'大小','L,XL,XXL,XXXL,S',0), (316,81,'T1','1,2,3,4',0), (317,81,'T2','a,b,c',0), (318,82,'规格','默认',0), (337,85,'规格','默认',0), (342,83,'颜色','白色,黑色,红色,蓝色',0), (343,83,'大小','L,XL,XXL,XXXL,S',0), (344,83,'attr1','a1,a2',0), (345,83,'attr2','b1,b2',0), (346,86,'规格','默认',0), (349,88,'颜色','白色,黑色,红色,蓝色',0), (350,88,'大小','L,XL,XXL,XXXL,S',0), (351,89,'规格','默认',0), (352,90,'颜色','白色,黑色,红色,蓝色',0), (353,90,'大小','L,XL,XXL,XXXL,S',0), (360,91,'颜色','白色,黑色,红色,蓝色',0), (361,91,'大小','L,XL,XXL,XXXL,S',0), (375,87,'型号','一型,二型',0), (376,87,'样式','A,B,C',0), (377,93,'规格','默认',0), (378,94,'规格','默认',0), (379,95,'规格','默认',0), (380,96,'规格','默认',0), (381,97,'规格','默认',0), (382,98,'规格','默认',0), (393,106,'规格','默认',0), (409,107,'规格','默认',0), (410,108,'规格','默认',0), (412,102,'5.8英寸','白色',0), (413,102,'6.1英寸','红色',0), (418,92,'颜色','白色,黑色,红色,蓝色',0), (419,92,'大小','L,XL,XXL,XXXL,S',0), (420,110,'5.8英寸','白色',0), (421,110,'6.1英寸','红色',0), (434,99,'颜色','白色,黑色,红色,蓝色',0), (435,99,'大小','L,XL,XXL,XXXL,S',0), (451,113,'5.8英寸','白色,蓝色',0), (452,113,'6.1英寸','红色',0), (463,101,'规格','默认',0), (468,116,'5.8英寸','白色,黑色',0), (469,116,'6.1英寸','红色,迷彩',0), (472,117,'5.8英寸','白色',0), (473,117,'6.1英寸','红色',0), (481,119,'5.8英寸','白色',0), (482,119,'6.1英寸','红色',0), (485,121,'规格','默认',0), (486,84,'颜色','白色,黑色,红色,蓝色',0), (487,84,'大小','L,XL,XXL,XXXL,S',0), (490,120,'规格','默认',0), (491,122,'规格','默认',0), (492,123,'规格','默认',0), (499,124,'规格','默认',0), (500,125,'规格','默认',0), (519,115,'规格','默认',0), (523,118,'规格','默认',0), (525,126,'颜色','1,2,3,4,5',0), (526,126,'尺码','1,2,3',0), (527,127,'网络类型','无需合约版',0), (528,127,'机身颜色','白色,黑色,红色,蓝色',0), (529,127,'储存容量','64G,128G,256G',0), (530,128,'网络类型','无需合约版',0), (531,128,'机身颜色','白色,黑色,红色,蓝色',0), (532,128,'储存容量','64G,128G,256G',0), (533,100,'规格','默认',0); /*!40000 ALTER TABLE `eb_store_product_attr` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_store_product_attr_result # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_product_attr_result`; CREATE TABLE `eb_store_product_attr_result` ( `id` int(10) NOT NULL AUTO_INCREMENT COMMENT '主键', `product_id` int(10) unsigned NOT NULL COMMENT '商品ID', `result` text NOT NULL COMMENT '商品属性参数', `change_time` int(10) unsigned NOT NULL COMMENT '上次修改时间', `type` tinyint(1) DEFAULT '0' COMMENT '活动类型 0=商品,1=秒杀,2=砍价,3=拼团', PRIMARY KEY (`id`), KEY `product_id` (`product_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='商品属性详情表'; LOCK TABLES `eb_store_product_attr_result` WRITE; /*!40000 ALTER TABLE `eb_store_product_attr_result` DISABLE KEYS */; INSERT INTO `eb_store_product_attr_result` (`id`, `product_id`, `result`, `change_time`, `type`) VALUES (915,81,'[{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"volume\":99,\"weight\":99}]',1596158908,0), (922,83,'[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a2\",\"volume\":88,\"weight\":88}]',1596166608,0), (924,88,'[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":99,\"price\":99,\"productId\":88,\"stock\":99,\"volume\":99,\"weight\":99}]',1596167536,0), (925,90,'[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":90,\"stock\":88,\"volume\":88,\"weight\":88}]',1596169428,0), (928,91,'[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\"},\"barCode\":\"6\",\"brokerage\":0,\"cost\":6,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":6,\"price\":6,\"productId\":91,\"stock\":6,\"volume\":6,\"weight\":6}]',1596176063,0), (934,87,'[{\"attrValue\":{\"样式\":\"A\",\"型号\":\"一型\"},\"barCode\":\"8\",\"brokerage\":0,\"cost\":2,\"image\":\"\",\"otPrice\":3,\"price\":1,\"productId\":87,\"stock\":6,\"suk\":\"A,一型\",\"volume\":8,\"weight\":89},{\"attrValue\":{\"样式\":\"B\",\"型号\":\"一型\"},\"barCode\":\"8\",\"brokerage\":0,\"cost\":2,\"image\":\"\",\"otPrice\":3,\"price\":1,\"productId\":87,\"stock\":6,\"suk\":\"B,一型\",\"volume\":8,\"weight\":89},{\"attrValue\":{\"样式\":\"C\",\"型号\":\"一型\"},\"barCode\":\"8\",\"brokerage\":0,\"cost\":2,\"image\":\"\",\"otPrice\":3,\"price\":1,\"productId\":87,\"stock\":6,\"suk\":\"C,一型\",\"volume\":8,\"weight\":89},{\"attrValue\":{\"样式\":\"A\",\"型号\":\"二型\"},\"barCode\":\"8\",\"brokerage\":0,\"cost\":2,\"image\":\"\",\"otPrice\":3,\"price\":1,\"productId\":87,\"stock\":6,\"suk\":\"A,二型\",\"volume\":8,\"weight\":89},{\"attrValue\":{\"样式\":\"B\",\"型号\":\"二型\"},\"barCode\":\"8\",\"brokerage\":0,\"cost\":2,\"image\":\"\",\"otPrice\":3,\"price\":1,\"productId\":87,\"stock\":6,\"suk\":\"B,二型\",\"volume\":8,\"weight\":89},{\"attrValue\":{\"样式\":\"C\",\"型号\":\"二型\"},\"barCode\":\"8\",\"brokerage\":0,\"cost\":2,\"image\":\"\",\"otPrice\":3,\"price\":1,\"productId\":87,\"stock\":6,\"suk\":\"C,二型\",\"volume\":8,\"weight\":89}]',1596177493,0), (940,102,'[{\"attrValue\":{\"5.8英寸\":\"白色\",\"6.1英寸\":\"红色\"},\"brokerage\":0,\"cost\":20,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/3fc403bcde39410b8d993796ad2847bf7mz1nt5q8e.jpg\",\"otPrice\":20,\"price\":0.1,\"productId\":102,\"stock\":100,\"suk\":\"白色,红色\",\"volume\":20,\"weight\":20}]',1597114079,0), (943,92,'[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"L,白色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"XL,白色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"XXL,白色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"XXXL,白色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"S,白色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"L,黑色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"XL,黑色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"XXL,黑色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"XXXL,黑色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"S,黑色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"L,红色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"XL,红色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"XXL,红色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"XXXL,红色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"S,红色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"L,蓝色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"XL,蓝色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"XXL,蓝色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"XXXL,蓝色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\"},\"barCode\":\"999\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png\",\"otPrice\":9,\"price\":900,\"productId\":92,\"stock\":9999,\"suk\":\"S,蓝色\",\"volume\":9,\"weight\":9}]',1597137598,0), (944,110,'[{\"attrValue\":{\"5.8英寸\":\"白色\",\"6.1英寸\":\"红色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":8,\"price\":888,\"productId\":110,\"stock\":88,\"volume\":88,\"weight\":88}]',1597202671,0), (946,99,'[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"L,白色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"XL,白色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"XXL,白色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"XXXL,白色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"S,白色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"L,黑色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"XL,黑色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"XXL,黑色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"XXXL,黑色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"S,黑色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"L,红色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"XL,红色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"XXL,红色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"XXXL,红色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"S,红色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"L,蓝色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"XL,蓝色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"XXL,蓝色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"XXXL,蓝色\",\"volume\":1,\"weight\":9},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":9,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":9,\"price\":9,\"productId\":99,\"stock\":9999,\"suk\":\"S,蓝色\",\"volume\":1,\"weight\":9}]',1597214734,0), (947,113,'[{\"attrValue\":{\"5.8英寸\":\"白色\",\"6.1英寸\":\"红色\"},\"brokerage\":0,\"cost\":5,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/store/2020/08/11/c79e9cda47db47748da64fd5bd4d1a30l2wpoycstu.png\",\"otPrice\":50,\"price\":10,\"productId\":113,\"stock\":50,\"volume\":0,\"weight\":0},{\"attrValue\":{\"5.8英寸\":\"蓝色\",\"6.1英寸\":\"红色\"},\"brokerage\":0,\"cost\":5,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/store/2020/08/11/c79e9cda47db47748da64fd5bd4d1a30l2wpoycstu.png\",\"otPrice\":50,\"price\":10,\"productId\":113,\"stock\":0,\"volume\":0,\"weight\":0}]',1597243423,0), (949,116,'[{\"attrValue\":{\"5.8英寸\":\"白色\",\"6.1英寸\":\"红色\"},\"barCode\":\"7\",\"brokerage\":0,\"cost\":7,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/f5aca226e3474a7fbaf1cd6843453090jmzxfdb941.jpg\",\"otPrice\":7,\"price\":777,\"productId\":116,\"stock\":777,\"suk\":\"白色,红色\",\"volume\":7,\"weight\":7},{\"attrValue\":{\"5.8英寸\":\"白色\",\"6.1英寸\":\"迷彩\"},\"barCode\":\"7\",\"brokerage\":0,\"cost\":7,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/f5aca226e3474a7fbaf1cd6843453090jmzxfdb941.jpg\",\"otPrice\":7,\"price\":777,\"productId\":116,\"stock\":777,\"suk\":\"白色,迷彩\",\"volume\":7,\"weight\":7},{\"attrValue\":{\"5.8英寸\":\"黑色\",\"6.1英寸\":\"红色\"},\"barCode\":\"7\",\"brokerage\":0,\"cost\":7,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/f5aca226e3474a7fbaf1cd6843453090jmzxfdb941.jpg\",\"otPrice\":7,\"price\":777,\"productId\":116,\"stock\":777,\"suk\":\"黑色,红色\",\"volume\":7,\"weight\":7},{\"attrValue\":{\"5.8英寸\":\"黑色\",\"6.1英寸\":\"迷彩\"},\"barCode\":\"7\",\"brokerage\":0,\"cost\":7,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/f5aca226e3474a7fbaf1cd6843453090jmzxfdb941.jpg\",\"otPrice\":7,\"price\":777,\"productId\":116,\"stock\":777,\"suk\":\"黑色,迷彩\",\"volume\":7,\"weight\":7}]',1597297716,0), (951,117,'[{\"attrValue\":{\"5.8英寸\":\"白色\",\"6.1英寸\":\"红色\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":8888,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/store/2020/08/13/5771a123b9a24666b5cdcf531f7744d6grduvuarjw.png\",\"otPrice\":888,\"price\":8888,\"productId\":117,\"stock\":88888,\"suk\":\"白色,红色\",\"volume\":8,\"weight\":8}]',1597297901,0), (952,119,'[{\"attrValue\":{\"5.8英寸\":\"白色\",\"6.1英寸\":\"红色\"},\"barCode\":\"77\",\"brokerage\":0,\"cost\":17,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/store/2020/08/13/5771a123b9a24666b5cdcf531f7744d6grduvuarjw.png\",\"otPrice\":77,\"price\":77,\"productId\":119,\"stock\":77,\"volume\":77,\"weight\":77}]',1597298662,0), (953,84,'[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"L,白色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"XL,白色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"XXL,白色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"XXXL,白色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"S,白色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"L,黑色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"XL,黑色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"XXL,黑色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"XXXL,黑色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"S,黑色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"L,红色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"XL,红色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"XXL,红色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"XXXL,红色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"S,红色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"L,蓝色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"XL,蓝色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"XXL,蓝色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"XXXL,蓝色\",\"volume\":9,\"weight\":9},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\"},\"barCode\":\"9\",\"brokerage\":0,\"cost\":999,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg\",\"otPrice\":999,\"price\":999,\"productId\":84,\"stock\":999,\"suk\":\"S,蓝色\",\"volume\":9,\"weight\":9}]',1597298929,0), (958,126,'[{\"attrValue\":{\"颜色\":\"1\",\"尺码\":\"1\"},\"brokerage\":0,\"cost\":50,\"image\":\"\",\"otPrice\":200,\"price\":100,\"productId\":126,\"stock\":100,\"volume\":0,\"weight\":0},{\"attrValue\":{\"颜色\":\"1\",\"尺码\":\"2\"},\"brokerage\":0,\"cost\":50,\"image\":\"\",\"otPrice\":200,\"price\":100,\"productId\":126,\"stock\":500,\"volume\":0,\"weight\":0},{\"attrValue\":{\"颜色\":\"1\",\"尺码\":\"3\"},\"brokerage\":0,\"cost\":50,\"image\":\"\",\"otPrice\":200,\"price\":100,\"productId\":126,\"stock\":500,\"volume\":0,\"weight\":0},{\"attrValue\":{\"颜色\":\"2\",\"尺码\":\"1\"},\"brokerage\":0,\"cost\":50,\"image\":\"\",\"otPrice\":200,\"price\":100,\"productId\":126,\"stock\":500,\"volume\":0,\"weight\":0},{\"attrValue\":{\"颜色\":\"2\",\"尺码\":\"2\"},\"brokerage\":0,\"cost\":50,\"image\":\"\",\"otPrice\":200,\"price\":100,\"productId\":126,\"stock\":500,\"volume\":0,\"weight\":0},{\"attrValue\":{\"颜色\":\"2\",\"尺码\":\"3\"},\"brokerage\":0,\"cost\":50,\"image\":\"\",\"otPrice\":200,\"price\":100,\"productId\":126,\"stock\":500,\"volume\":0,\"weight\":0},{\"attrValue\":{\"颜色\":\"3\",\"尺码\":\"1\"},\"brokerage\":0,\"cost\":50,\"image\":\"\",\"otPrice\":200,\"price\":100,\"productId\":126,\"stock\":500,\"volume\":0,\"weight\":0},{\"attrValue\":{\"颜色\":\"3\",\"尺码\":\"2\"},\"brokerage\":0,\"cost\":50,\"image\":\"\",\"otPrice\":200,\"price\":100,\"productId\":126,\"stock\":500,\"volume\":0,\"weight\":0},{\"attrValue\":{\"颜色\":\"3\",\"尺码\":\"3\"},\"brokerage\":0,\"cost\":50,\"image\":\"\",\"otPrice\":200,\"price\":100,\"productId\":126,\"stock\":500,\"volume\":0,\"weight\":0},{\"attrValue\":{\"颜色\":\"4\",\"尺码\":\"1\"},\"brokerage\":0,\"cost\":50,\"image\":\"\",\"otPrice\":200,\"price\":100,\"productId\":126,\"stock\":500,\"volume\":0,\"weight\":0},{\"attrValue\":{\"颜色\":\"4\",\"尺码\":\"2\"},\"brokerage\":0,\"cost\":50,\"image\":\"\",\"otPrice\":200,\"price\":100,\"productId\":126,\"stock\":500,\"volume\":0,\"weight\":0},{\"attrValue\":{\"颜色\":\"4\",\"尺码\":\"3\"},\"brokerage\":0,\"cost\":50,\"image\":\"\",\"otPrice\":200,\"price\":100,\"productId\":126,\"stock\":500,\"volume\":0,\"weight\":0},{\"attrValue\":{\"颜色\":\"5\",\"尺码\":\"1\"},\"brokerage\":0,\"cost\":50,\"image\":\"\",\"otPrice\":200,\"price\":100,\"productId\":126,\"stock\":500,\"volume\":0,\"weight\":0},{\"attrValue\":{\"颜色\":\"5\",\"尺码\":\"2\"},\"brokerage\":0,\"cost\":50,\"image\":\"\",\"otPrice\":200,\"price\":100,\"productId\":126,\"stock\":500,\"volume\":0,\"weight\":0},{\"attrValue\":{\"颜色\":\"5\",\"尺码\":\"3\"},\"brokerage\":0,\"cost\":50,\"image\":\"\",\"otPrice\":200,\"price\":100,\"productId\":126,\"stock\":500,\"volume\":0,\"weight\":0}]',1597305134,0), (959,127,'[{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"白色\",\"储存容量\":\"64G\"},\"barCode\":\"123123\",\"brokerage\":0,\"cost\":2000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png\",\"otPrice\":7000,\"price\":5000,\"productId\":127,\"stock\":100,\"suk\":\"无需合约版,白色,64G\",\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"白色\",\"储存容量\":\"128G\"},\"barCode\":\"123123\",\"brokerage\":0,\"cost\":2000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png\",\"otPrice\":7000,\"price\":5000,\"productId\":127,\"stock\":100,\"suk\":\"无需合约版,白色,128G\",\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"白色\",\"储存容量\":\"256G\"},\"barCode\":\"123123\",\"brokerage\":0,\"cost\":2000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png\",\"otPrice\":7000,\"price\":5000,\"productId\":127,\"stock\":100,\"suk\":\"无需合约版,白色,256G\",\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"黑色\",\"储存容量\":\"64G\"},\"barCode\":\"123123\",\"brokerage\":0,\"cost\":2000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png\",\"otPrice\":7000,\"price\":5000,\"productId\":127,\"stock\":100,\"suk\":\"无需合约版,黑色,64G\",\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"黑色\",\"储存容量\":\"128G\"},\"barCode\":\"123123\",\"brokerage\":0,\"cost\":2000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png\",\"otPrice\":7000,\"price\":5000,\"productId\":127,\"stock\":100,\"suk\":\"无需合约版,黑色,128G\",\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"黑色\",\"储存容量\":\"256G\"},\"barCode\":\"123123\",\"brokerage\":0,\"cost\":2000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png\",\"otPrice\":7000,\"price\":5000,\"productId\":127,\"stock\":100,\"suk\":\"无需合约版,黑色,256G\",\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"红色\",\"储存容量\":\"64G\"},\"barCode\":\"123123\",\"brokerage\":0,\"cost\":2000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png\",\"otPrice\":7000,\"price\":5000,\"productId\":127,\"stock\":100,\"suk\":\"无需合约版,红色,64G\",\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"红色\",\"储存容量\":\"128G\"},\"barCode\":\"123123\",\"brokerage\":0,\"cost\":2000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png\",\"otPrice\":7000,\"price\":5000,\"productId\":127,\"stock\":100,\"suk\":\"无需合约版,红色,128G\",\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"红色\",\"储存容量\":\"256G\"},\"barCode\":\"123123\",\"brokerage\":0,\"cost\":2000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png\",\"otPrice\":7000,\"price\":5000,\"productId\":127,\"stock\":100,\"suk\":\"无需合约版,红色,256G\",\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"蓝色\",\"储存容量\":\"64G\"},\"barCode\":\"123123\",\"brokerage\":0,\"cost\":2000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png\",\"otPrice\":7000,\"price\":5000,\"productId\":127,\"stock\":100,\"suk\":\"无需合约版,蓝色,64G\",\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"蓝色\",\"储存容量\":\"128G\"},\"barCode\":\"123123\",\"brokerage\":0,\"cost\":2000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png\",\"otPrice\":7000,\"price\":5000,\"productId\":127,\"stock\":100,\"suk\":\"无需合约版,蓝色,128G\",\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"蓝色\",\"储存容量\":\"256G\"},\"barCode\":\"123123\",\"brokerage\":0,\"cost\":2000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png\",\"otPrice\":7000,\"price\":5000,\"productId\":127,\"stock\":100,\"suk\":\"无需合约版,蓝色,256G\",\"volume\":0,\"weight\":0}]',1597305300,0), (960,128,'[{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"白色\",\"储存容量\":\"64G\"},\"barCode\":\"12312123\",\"brokerage\":0,\"cost\":1000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png\",\"otPrice\":6000,\"price\":5000,\"productId\":128,\"stock\":10,\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"白色\",\"储存容量\":\"128G\"},\"barCode\":\"12312123\",\"brokerage\":0,\"cost\":1000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png\",\"otPrice\":6000,\"price\":5000,\"productId\":128,\"stock\":10,\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"白色\",\"储存容量\":\"256G\"},\"barCode\":\"12312123\",\"brokerage\":0,\"cost\":1000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png\",\"otPrice\":6000,\"price\":5000,\"productId\":128,\"stock\":10,\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"黑色\",\"储存容量\":\"64G\"},\"barCode\":\"12312123\",\"brokerage\":0,\"cost\":1000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png\",\"otPrice\":6000,\"price\":5000,\"productId\":128,\"stock\":10,\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"黑色\",\"储存容量\":\"128G\"},\"barCode\":\"12312123\",\"brokerage\":0,\"cost\":1000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png\",\"otPrice\":6000,\"price\":5000,\"productId\":128,\"stock\":10,\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"黑色\",\"储存容量\":\"256G\"},\"barCode\":\"12312123\",\"brokerage\":0,\"cost\":1000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png\",\"otPrice\":6000,\"price\":5000,\"productId\":128,\"stock\":10,\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"红色\",\"储存容量\":\"64G\"},\"barCode\":\"12312123\",\"brokerage\":0,\"cost\":1000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png\",\"otPrice\":6000,\"price\":5000,\"productId\":128,\"stock\":10,\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"红色\",\"储存容量\":\"128G\"},\"barCode\":\"12312123\",\"brokerage\":0,\"cost\":1000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png\",\"otPrice\":6000,\"price\":5000,\"productId\":128,\"stock\":10,\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"红色\",\"储存容量\":\"256G\"},\"barCode\":\"12312123\",\"brokerage\":0,\"cost\":1000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png\",\"otPrice\":6000,\"price\":5000,\"productId\":128,\"stock\":10,\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"蓝色\",\"储存容量\":\"64G\"},\"barCode\":\"12312123\",\"brokerage\":0,\"cost\":1000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png\",\"otPrice\":6000,\"price\":5000,\"productId\":128,\"stock\":10,\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"蓝色\",\"储存容量\":\"128G\"},\"barCode\":\"12312123\",\"brokerage\":0,\"cost\":1000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png\",\"otPrice\":6000,\"price\":5000,\"productId\":128,\"stock\":10,\"volume\":0,\"weight\":0},{\"attrValue\":{\"网络类型\":\"无需合约版\",\"机身颜色\":\"蓝色\",\"储存容量\":\"256G\"},\"barCode\":\"12312123\",\"brokerage\":0,\"cost\":1000,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png\",\"otPrice\":6000,\"price\":5000,\"productId\":128,\"stock\":10,\"volume\":0,\"weight\":0}]',1597305492,0); /*!40000 ALTER TABLE `eb_store_product_attr_result` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_store_product_attr_value # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_product_attr_value`; CREATE TABLE `eb_store_product_attr_value` ( `id` mediumint(11) NOT NULL AUTO_INCREMENT COMMENT '主键', `product_id` int(10) unsigned NOT NULL COMMENT '商品ID', `suk` varchar(128) NOT NULL COMMENT '商品属性索引值 (attr_value|attr_value[|....])', `stock` int(10) unsigned NOT NULL COMMENT '属性对应的库存', `sales` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '销量', `price` decimal(8,2) unsigned NOT NULL COMMENT '属性金额', `image` varchar(1000) DEFAULT NULL COMMENT '图片', `unique` char(8) NOT NULL DEFAULT '' COMMENT '唯一值', `cost` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '成本价', `bar_code` varchar(50) NOT NULL DEFAULT '' COMMENT '商品条码', `ot_price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '原价', `weight` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '重量', `volume` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '体积', `brokerage` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '一级返佣', `brokerage_two` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '二级返佣', `type` tinyint(1) DEFAULT '0' COMMENT '活动类型 0=商品,1=秒杀,2=砍价,3=拼团', `quota` int(11) DEFAULT NULL COMMENT '活动限购数量', `quota_show` int(11) DEFAULT NULL COMMENT '活动限购数量显示', `attr_value` text COMMENT 'attr_values 创建更新时的属性对应', PRIMARY KEY (`id`), KEY `unique` (`unique`,`suk`) USING BTREE, KEY `store_id` (`product_id`,`suk`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品属性值表'; LOCK TABLES `eb_store_product_attr_value` WRITE; /*!40000 ALTER TABLE `eb_store_product_attr_value` DISABLE KEYS */; INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (2246,51,'8GB,L,白色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"L\",\"颜色\":\"白色\",\"T\":\"1\"}'), (2247,51,'8GB,L,白色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"L\",\"颜色\":\"白色\",\"T\":\"2\"}'), (2248,51,'8GB,L,白色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"L\",\"颜色\":\"白色\",\"T\":\"3\"}'), (2261,51,'8GB,XL,白色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XL\",\"颜色\":\"白色\",\"T\":\"1\"}'), (2262,51,'8GB,XL,白色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XL\",\"颜色\":\"白色\",\"T\":\"2\"}'), (2263,51,'8GB,XL,白色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XL\",\"颜色\":\"白色\",\"T\":\"3\"}'), (2276,51,'8GB,XXL,白色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXL\",\"颜色\":\"白色\",\"T\":\"1\"}'), (2277,51,'8GB,XXL,白色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXL\",\"颜色\":\"白色\",\"T\":\"2\"}'), (2278,51,'8GB,XXL,白色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXL\",\"颜色\":\"白色\",\"T\":\"3\"}'), (2291,51,'8GB,XXXL,白色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T\":\"1\"}'), (2292,51,'8GB,XXXL,白色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T\":\"2\"}'), (2293,51,'8GB,XXXL,白色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T\":\"3\"}'), (2306,51,'8GB,S,白色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"S\",\"颜色\":\"白色\",\"T\":\"1\"}'), (2307,51,'8GB,S,白色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"S\",\"颜色\":\"白色\",\"T\":\"2\"}'), (2308,51,'8GB,S,白色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"S\",\"颜色\":\"白色\",\"T\":\"3\"}'), (2321,51,'8GB,L,黑色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"L\",\"颜色\":\"黑色\",\"T\":\"1\"}'), (2322,51,'8GB,L,黑色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"L\",\"颜色\":\"黑色\",\"T\":\"2\"}'), (2323,51,'8GB,L,黑色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"L\",\"颜色\":\"黑色\",\"T\":\"3\"}'), (2336,51,'8GB,XL,黑色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XL\",\"颜色\":\"黑色\",\"T\":\"1\"}'), (2337,51,'8GB,XL,黑色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XL\",\"颜色\":\"黑色\",\"T\":\"2\"}'), (2338,51,'8GB,XL,黑色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XL\",\"颜色\":\"黑色\",\"T\":\"3\"}'), (2351,51,'8GB,XXL,黑色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T\":\"1\"}'), (2352,51,'8GB,XXL,黑色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T\":\"2\"}'), (2353,51,'8GB,XXL,黑色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T\":\"3\"}'), (2366,51,'8GB,XXXL,黑色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T\":\"1\"}'), (2367,51,'8GB,XXXL,黑色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T\":\"2\"}'), (2368,51,'8GB,XXXL,黑色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T\":\"3\"}'), (2372,51,'32GB,XXXL,黑色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"32GB\",\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T\":\"1\"}'), (2373,51,'32GB,XXXL,黑色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"32GB\",\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T\":\"2\"}'), (2374,51,'32GB,XXXL,黑色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"32GB\",\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T\":\"3\"}'), (2381,51,'8GB,S,黑色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"S\",\"颜色\":\"黑色\",\"T\":\"1\"}'), (2382,51,'8GB,S,黑色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"S\",\"颜色\":\"黑色\",\"T\":\"2\"}'), (2383,51,'8GB,S,黑色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"S\",\"颜色\":\"黑色\",\"T\":\"3\"}'), (2396,51,'8GB,L,红色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"L\",\"颜色\":\"红色\",\"T\":\"1\"}'), (2397,51,'8GB,L,红色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"L\",\"颜色\":\"红色\",\"T\":\"2\"}'), (2398,51,'8GB,L,红色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"L\",\"颜色\":\"红色\",\"T\":\"3\"}'), (2411,51,'8GB,XL,红色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XL\",\"颜色\":\"红色\",\"T\":\"1\"}'), (2412,51,'8GB,XL,红色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XL\",\"颜色\":\"红色\",\"T\":\"2\"}'), (2413,51,'8GB,XL,红色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XL\",\"颜色\":\"红色\",\"T\":\"3\"}'), (2426,51,'8GB,XXL,红色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXL\",\"颜色\":\"红色\",\"T\":\"1\"}'), (2427,51,'8GB,XXL,红色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXL\",\"颜色\":\"红色\",\"T\":\"2\"}'), (2428,51,'8GB,XXL,红色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXL\",\"颜色\":\"红色\",\"T\":\"3\"}'), (2441,51,'8GB,XXXL,红色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T\":\"1\"}'), (2442,51,'8GB,XXXL,红色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T\":\"2\"}'), (2443,51,'8GB,XXXL,红色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T\":\"3\"}'), (2456,51,'8GB,S,红色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"S\",\"颜色\":\"红色\",\"T\":\"1\"}'), (2457,51,'8GB,S,红色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"S\",\"颜色\":\"红色\",\"T\":\"2\"}'), (2458,51,'8GB,S,红色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"S\",\"颜色\":\"红色\",\"T\":\"3\"}'), (2471,51,'8GB,L,蓝色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"L\",\"颜色\":\"蓝色\",\"T\":\"1\"}'), (2472,51,'8GB,L,蓝色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"L\",\"颜色\":\"蓝色\",\"T\":\"2\"}'), (2473,51,'8GB,L,蓝色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"L\",\"颜色\":\"蓝色\",\"T\":\"3\"}'), (2486,51,'8GB,XL,蓝色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T\":\"1\"}'), (2487,51,'8GB,XL,蓝色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T\":\"2\"}'), (2488,51,'8GB,XL,蓝色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T\":\"3\"}'), (2501,51,'8GB,XXL,蓝色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T\":\"1\"}'), (2502,51,'8GB,XXL,蓝色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T\":\"2\"}'), (2503,51,'8GB,XXL,蓝色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T\":\"3\"}'), (2516,51,'8GB,XXXL,蓝色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T\":\"1\"}'), (2517,51,'8GB,XXXL,蓝色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T\":\"2\"}'), (2518,51,'8GB,XXXL,蓝色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T\":\"3\"}'), (2523,51,'32GB,XXXL,蓝色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"32GB\",\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T\":\"2\"}'), (2524,51,'32GB,XXXL,蓝色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"32GB\",\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T\":\"3\"}'), (2531,51,'8GB,S,蓝色,1',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"S\",\"颜色\":\"蓝色\",\"T\":\"1\"}'), (2532,51,'8GB,S,蓝色,2',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"S\",\"颜色\":\"蓝色\",\"T\":\"2\"}'), (2533,51,'8GB,S,蓝色,3',1,0,1.00,'','',11.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"ROM\":\"8GB\",\"大小\":\"S\",\"颜色\":\"蓝色\",\"T\":\"3\"}'), (2546,52,'白色,红色',1,0,1.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/24/b3cea3fa87744102a500cc334ca10e62slwtoj09n7.jpg','',1.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"5.8英寸\":\"白色\",\"6.1英寸\":\"红色\"}'), (2547,52,'白色,黑色',1,0,1.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/24/b3cea3fa87744102a500cc334ca10e62slwtoj09n7.jpg','',1.00,'1',1.00,1.00,1.00,0.00,0.00,0,NULL,NULL,'{\"5.8英寸\":\"白色\",\"6.1英寸\":\"黑色\"}'), (2548,56,'默认',2,0,2.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/24/b3cea3fa87744102a500cc334ca10e62slwtoj09n7.jpg','',0.00,'',2.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (2549,57,'默认',3,0,3.00,'','',0.00,'',3.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (2550,57,'白色,红色',4,0,2.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/24/b3cea3fa87744102a500cc334ca10e62slwtoj09n7.jpg','',2.00,'4',23.00,4.00,4.00,0.00,0.00,0,NULL,NULL,'{\"5.8英寸\":\"白色\",\"6.1英寸\":\"红色\"}'), (2551,57,'2,红色',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"5.8英寸\":\"2\",\"6.1英寸\":\"红色\"}'), (2552,57,'3,红色',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"5.8英寸\":\"3\",\"6.1英寸\":\"红色\"}'), (2553,58,'L,白色',5,0,2.00,'','',3.00,'5',4.00,6.00,7.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\"}'), (2557,58,'S,白色',5,0,2.00,'','',3.00,'5',4.00,6.00,7.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\"}'), (2558,58,'L,黑色',5,0,2.00,'','',3.00,'5',4.00,6.00,7.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\"}'), (2563,58,'L,红色',5,0,2.00,'','',3.00,'5',4.00,6.00,7.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\"}'), (2568,58,'L,蓝色',5,0,2.00,'','',3.00,'5',4.00,6.00,7.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\"}'), (3777,80,'L,白色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3778,80,'L,白色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3779,80,'L,白色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3780,80,'L,白色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3781,80,'L,白色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3782,80,'L,白色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3783,80,'L,白色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3784,80,'L,白色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3785,80,'L,白色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3786,80,'L,白色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3787,80,'L,白色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3788,80,'L,白色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3789,80,'XL,白色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3790,80,'XL,白色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3791,80,'XL,白色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3792,80,'XL,白色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3793,80,'XL,白色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3794,80,'XL,白色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3795,80,'XL,白色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3796,80,'XL,白色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3797,80,'XL,白色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3798,80,'XL,白色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3799,80,'XL,白色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3800,80,'XL,白色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3801,80,'XXL,白色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3802,80,'XXL,白色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3803,80,'XXL,白色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3804,80,'XXL,白色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3805,80,'XXL,白色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3806,80,'XXL,白色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3807,80,'XXL,白色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3808,80,'XXL,白色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3809,80,'XXL,白色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3810,80,'XXL,白色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3811,80,'XXL,白色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3812,80,'XXL,白色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3813,80,'XXXL,白色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3814,80,'XXXL,白色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3815,80,'XXXL,白色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3816,80,'XXXL,白色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3817,80,'XXXL,白色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3818,80,'XXXL,白色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3819,80,'XXXL,白色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3820,80,'XXXL,白色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3821,80,'XXXL,白色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3822,80,'XXXL,白色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3823,80,'XXXL,白色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3824,80,'XXXL,白色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3825,80,'S,白色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3826,80,'S,白色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3827,80,'S,白色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3828,80,'S,白色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3829,80,'S,白色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3830,80,'S,白色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3831,80,'S,白色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3832,80,'S,白色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3833,80,'S,白色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3834,80,'S,白色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3835,80,'S,白色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3836,80,'S,白色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3837,80,'L,黑色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3838,80,'L,黑色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3839,80,'L,黑色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3840,80,'L,黑色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3841,80,'L,黑色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3842,80,'L,黑色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3843,80,'L,黑色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3844,80,'L,黑色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3845,80,'L,黑色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3846,80,'L,黑色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3847,80,'L,黑色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3848,80,'L,黑色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3849,80,'XL,黑色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3850,80,'XL,黑色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3851,80,'XL,黑色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3852,80,'XL,黑色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3853,80,'XL,黑色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3854,80,'XL,黑色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3855,80,'XL,黑色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3856,80,'XL,黑色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3857,80,'XL,黑色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3858,80,'XL,黑色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3859,80,'XL,黑色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3860,80,'XL,黑色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3861,80,'XXL,黑色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3862,80,'XXL,黑色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3863,80,'XXL,黑色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3864,80,'XXL,黑色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3865,80,'XXL,黑色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3866,80,'XXL,黑色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3867,80,'XXL,黑色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3868,80,'XXL,黑色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3869,80,'XXL,黑色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3870,80,'XXL,黑色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3871,80,'XXL,黑色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3872,80,'XXL,黑色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3873,80,'XXXL,黑色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3874,80,'XXXL,黑色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3875,80,'XXXL,黑色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3876,80,'XXXL,黑色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3877,80,'XXXL,黑色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3878,80,'XXXL,黑色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3879,80,'XXXL,黑色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3880,80,'XXXL,黑色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3881,80,'XXXL,黑色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3882,80,'XXXL,黑色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3883,80,'XXXL,黑色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3884,80,'XXXL,黑色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3885,80,'S,黑色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3886,80,'S,黑色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3887,80,'S,黑色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3888,80,'S,黑色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3889,80,'S,黑色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3890,80,'S,黑色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3891,80,'S,黑色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3892,80,'S,黑色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3893,80,'S,黑色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3894,80,'S,黑色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3895,80,'S,黑色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3896,80,'S,黑色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3897,80,'L,红色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3898,80,'L,红色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3899,80,'L,红色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3900,80,'L,红色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3901,80,'L,红色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3902,80,'L,红色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3903,80,'L,红色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3904,80,'L,红色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3905,80,'L,红色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3906,80,'L,红色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3907,80,'L,红色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3908,80,'L,红色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3909,80,'XL,红色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3910,80,'XL,红色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3911,80,'XL,红色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3912,80,'XL,红色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3913,80,'XL,红色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3914,80,'XL,红色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3915,80,'XL,红色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3916,80,'XL,红色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3917,80,'XL,红色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3918,80,'XL,红色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3919,80,'XL,红色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3920,80,'XL,红色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3921,80,'XXL,红色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3922,80,'XXL,红色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3923,80,'XXL,红色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3924,80,'XXL,红色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3925,80,'XXL,红色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3926,80,'XXL,红色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3927,80,'XXL,红色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3928,80,'XXL,红色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3929,80,'XXL,红色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3930,80,'XXL,红色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3931,80,'XXL,红色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3932,80,'XXL,红色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3933,80,'XXXL,红色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3934,80,'XXXL,红色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3935,80,'XXXL,红色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3936,80,'XXXL,红色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3937,80,'XXXL,红色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3938,80,'XXXL,红色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3939,80,'XXXL,红色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3940,80,'XXXL,红色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3941,80,'XXXL,红色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3942,80,'XXXL,红色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3943,80,'XXXL,红色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3944,80,'XXXL,红色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3945,80,'S,红色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3946,80,'S,红色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3947,80,'S,红色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3948,80,'S,红色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3949,80,'S,红色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3950,80,'S,红色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3951,80,'S,红色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3952,80,'S,红色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3953,80,'S,红色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3954,80,'S,红色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3955,80,'S,红色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3956,80,'S,红色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3957,80,'L,蓝色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3958,80,'L,蓝色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3959,80,'L,蓝色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3960,80,'L,蓝色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3961,80,'L,蓝色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3962,80,'L,蓝色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3963,80,'L,蓝色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3964,80,'L,蓝色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3965,80,'L,蓝色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3966,80,'L,蓝色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3967,80,'L,蓝色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3968,80,'L,蓝色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3969,80,'XL,蓝色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3970,80,'XL,蓝色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3971,80,'XL,蓝色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3972,80,'XL,蓝色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3973,80,'XL,蓝色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3974,80,'XL,蓝色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3975,80,'XL,蓝色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3976,80,'XL,蓝色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3977,80,'XL,蓝色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3978,80,'XL,蓝色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3979,80,'XL,蓝色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3980,80,'XL,蓝色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3981,80,'XXL,蓝色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3982,80,'XXL,蓝色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3983,80,'XXL,蓝色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3984,80,'XXL,蓝色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3985,80,'XXL,蓝色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3986,80,'XXL,蓝色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3987,80,'XXL,蓝色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"}'), (3988,80,'XXL,蓝色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"}'), (3989,80,'XXL,蓝色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"}'), (3990,80,'XXL,蓝色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"}'), (3991,80,'XXL,蓝色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"}'), (3992,80,'XXL,蓝色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"}'), (3993,80,'XXXL,蓝色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"}'), (3994,80,'XXXL,蓝色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"}'), (3995,80,'XXXL,蓝色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"}'), (3996,80,'XXXL,蓝色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"}'), (3997,80,'XXXL,蓝色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"}'), (3998,80,'XXXL,蓝色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"}'), (3999,80,'XXXL,蓝色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"}'), (4000,80,'XXXL,蓝色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"}'), (4001,80,'XXXL,蓝色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"}'), (4002,80,'XXXL,蓝色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"}'), (4003,80,'XXXL,蓝色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"}'), (4004,80,'XXXL,蓝色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"}'), (4005,80,'S,蓝色,1,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"}'), (4006,80,'S,蓝色,1,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"}'), (4007,80,'S,蓝色,1,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"}'), (4008,80,'S,蓝色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"}'), (4009,80,'S,蓝色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"}'), (4010,80,'S,蓝色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"}'), (4011,80,'S,蓝色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"}'), (4012,80,'S,蓝色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"}'), (4013,80,'S,蓝色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"}'), (4014,80,'S,蓝色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"}'), (4015,80,'S,蓝色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"}'), (4016,80,'S,蓝色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"}'), (4026,81,'L,白色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4027,81,'L,白色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4028,81,'L,白色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4029,81,'L,白色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4030,81,'L,白色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4031,81,'L,白色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4032,81,'L,白色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4033,81,'L,白色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4034,81,'L,白色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4035,81,'L,白色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4036,81,'L,白色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4037,81,'L,白色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4038,81,'XL,白色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4039,81,'XL,白色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4040,81,'XL,白色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4041,81,'XL,白色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4042,81,'XL,白色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4043,81,'XL,白色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4044,81,'XL,白色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4045,81,'XL,白色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4046,81,'XL,白色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4047,81,'XL,白色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4048,81,'XL,白色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4049,81,'XL,白色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4050,81,'XXL,白色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4051,81,'XXL,白色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4052,81,'XXL,白色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4053,81,'XXL,白色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4054,81,'XXL,白色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4055,81,'XXL,白色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4056,81,'XXL,白色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4057,81,'XXL,白色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4058,81,'XXL,白色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4059,81,'XXL,白色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4060,81,'XXL,白色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4061,81,'XXL,白色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4062,81,'XXXL,白色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4063,81,'XXXL,白色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4064,81,'XXXL,白色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4065,81,'XXXL,白色,2,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4066,81,'XXXL,白色,2,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4067,81,'XXXL,白色,2,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4068,81,'XXXL,白色,3,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4069,81,'XXXL,白色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4070,81,'XXXL,白色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4071,81,'XXXL,白色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4072,81,'XXXL,白色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4073,81,'XXXL,白色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4074,81,'S,白色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4075,81,'S,白色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4076,81,'S,白色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4077,81,'S,白色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4078,81,'S,白色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4079,81,'S,白色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4080,81,'S,白色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4081,81,'S,白色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4082,81,'S,白色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4083,81,'S,白色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4084,81,'S,白色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4085,81,'S,白色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4086,81,'L,黑色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4087,81,'L,黑色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4088,81,'L,黑色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4089,81,'L,黑色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4090,81,'L,黑色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4091,81,'L,黑色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4092,81,'L,黑色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4093,81,'L,黑色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4094,81,'L,黑色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4095,81,'L,黑色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4096,81,'L,黑色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4097,81,'L,黑色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4098,81,'XL,黑色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4099,81,'XL,黑色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4100,81,'XL,黑色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4101,81,'XL,黑色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4102,81,'XL,黑色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4103,81,'XL,黑色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4104,81,'XL,黑色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4105,81,'XL,黑色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4106,81,'XL,黑色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4107,81,'XL,黑色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4108,81,'XL,黑色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4109,81,'XL,黑色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4110,81,'XXL,黑色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4111,81,'XXL,黑色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4112,81,'XXL,黑色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4113,81,'XXL,黑色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4114,81,'XXL,黑色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4115,81,'XXL,黑色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4116,81,'XXL,黑色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4117,81,'XXL,黑色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4118,81,'XXL,黑色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4119,81,'XXL,黑色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4120,81,'XXL,黑色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4121,81,'XXL,黑色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4122,81,'XXXL,黑色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4123,81,'XXXL,黑色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4124,81,'XXXL,黑色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4125,81,'XXXL,黑色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4126,81,'XXXL,黑色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4127,81,'XXXL,黑色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4128,81,'XXXL,黑色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4129,81,'XXXL,黑色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4130,81,'XXXL,黑色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4131,81,'XXXL,黑色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4132,81,'XXXL,黑色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4133,81,'XXXL,黑色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4134,81,'S,黑色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4135,81,'S,黑色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4136,81,'S,黑色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4137,81,'S,黑色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4138,81,'S,黑色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4139,81,'S,黑色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4140,81,'S,黑色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4141,81,'S,黑色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4142,81,'S,黑色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4143,81,'S,黑色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4144,81,'S,黑色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4145,81,'S,黑色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4146,81,'L,红色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4147,81,'L,红色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4148,81,'L,红色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4149,81,'L,红色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4150,81,'L,红色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4151,81,'L,红色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4152,81,'L,红色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4153,81,'L,红色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4154,81,'L,红色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4155,81,'L,红色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4156,81,'L,红色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4157,81,'L,红色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4158,81,'XL,红色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4159,81,'XL,红色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4160,81,'XL,红色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4161,81,'XL,红色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4162,81,'XL,红色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4163,81,'XL,红色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4164,81,'XL,红色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4165,81,'XL,红色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4166,81,'XL,红色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4167,81,'XL,红色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4168,81,'XL,红色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4169,81,'XL,红色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4170,81,'XXL,红色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4171,81,'XXL,红色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4172,81,'XXL,红色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4173,81,'XXL,红色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4174,81,'XXL,红色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4175,81,'XXL,红色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4176,81,'XXL,红色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4177,81,'XXL,红色,3,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4178,81,'XXL,红色,3,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4179,81,'XXL,红色,4,a',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4180,81,'XXL,红色,4,b',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4181,81,'XXL,红色,4,c',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4182,81,'XXXL,红色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4183,81,'XXXL,红色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4184,81,'XXXL,红色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4185,81,'XXXL,红色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4186,81,'XXXL,红色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4187,81,'XXXL,红色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4188,81,'XXXL,红色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4189,81,'XXXL,红色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4190,81,'XXXL,红色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4191,81,'XXXL,红色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4192,81,'XXXL,红色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4193,81,'XXXL,红色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4194,81,'S,红色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4195,81,'S,红色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4196,81,'S,红色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4197,81,'S,红色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4198,81,'S,红色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4199,81,'S,红色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4200,81,'S,红色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4201,81,'S,红色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4202,81,'S,红色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4203,81,'S,红色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4204,81,'S,红色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4205,81,'S,红色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4206,81,'L,蓝色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4207,81,'L,蓝色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4208,81,'L,蓝色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4209,81,'L,蓝色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4210,81,'L,蓝色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4211,81,'L,蓝色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4212,81,'L,蓝色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4213,81,'L,蓝色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4214,81,'L,蓝色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4215,81,'L,蓝色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4216,81,'L,蓝色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4217,81,'L,蓝色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4218,81,'XL,蓝色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4219,81,'XL,蓝色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4220,81,'XL,蓝色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4221,81,'XL,蓝色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4222,81,'XL,蓝色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4223,81,'XL,蓝色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4224,81,'XL,蓝色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4225,81,'XL,蓝色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4226,81,'XL,蓝色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4227,81,'XL,蓝色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4228,81,'XL,蓝色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4229,81,'XL,蓝色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4230,81,'XXL,蓝色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4231,81,'XXL,蓝色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4232,81,'XXL,蓝色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4233,81,'XXL,蓝色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4234,81,'XXL,蓝色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4235,81,'XXL,蓝色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4236,81,'XXL,蓝色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4237,81,'XXL,蓝色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4238,81,'XXL,蓝色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4239,81,'XXL,蓝色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4240,81,'XXL,蓝色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4241,81,'XXL,蓝色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4242,81,'XXXL,蓝色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4243,81,'XXXL,蓝色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4244,81,'XXXL,蓝色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4245,81,'XXXL,蓝色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4246,81,'XXXL,蓝色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4247,81,'XXXL,蓝色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4248,81,'XXXL,蓝色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4249,81,'XXXL,蓝色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4250,81,'XXXL,蓝色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4251,81,'XXXL,蓝色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4252,81,'XXXL,蓝色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4253,81,'XXXL,蓝色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4254,81,'S,蓝色,1,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4255,81,'S,蓝色,1,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4256,81,'S,蓝色,1,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4257,81,'S,蓝色,2,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4258,81,'S,蓝色,2,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4259,81,'S,蓝色,2,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4260,81,'S,蓝色,3,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4261,81,'S,蓝色,3,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4262,81,'S,蓝色,3,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4263,81,'S,蓝色,4,a',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4264,81,'S,蓝色,4,b',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (4265,81,'S,蓝色,4,c',0,0,0.00,'','',0.00,'',0.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,2,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXXL,白色,3,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,3,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,a\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,b\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"99\",\"brokerage\":0,\"cost\":99,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/27cb35c797e44862946528b040d357bd07cqyr5ra1.jpg\",\"otPrice\":99,\"price\":99,\"productId\":81,\"stock\":99,\"suk\":\"XXL,红色,4,c\",\"volume\":99,\"weight\":99},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"1\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"2\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"3\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"a\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"b\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"T1\":\"4\",\"T2\":\"c\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":81,\"stock\":0,\"volume\":0,\"weight\":0}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":314,\"productId\":81},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":315,\"productId\":81},{\"attrName\":\"T1\",\"attrValues\":\"1,2,3,4\",\"id\":316,\"productId\":81},{\"attrName\":\"T2\",\"attrValues\":\"a,b,c\",\"id\":317,\"productId\":81}]}'), (4266,82,'默认',100,0,10.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/36358bf3f52e40f4b8f451e470e2279arb99p3exzl.jpg','',0.00,'',10.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (4495,85,'默认',1,0,1.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/36358bf3f52e40f4b8f451e470e2279arb99p3exzl.jpg','',0.00,'',1.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (4576,83,'XXXL,蓝色,b1,a1',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a2\",\"volume\":88,\"weight\":88}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":342,\"productId\":83},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":343,\"productId\":83},{\"attrName\":\"attr1\",\"attrValues\":\"a1,a2\",\"id\":344,\"productId\":83},{\"attrName\":\"attr2\",\"attrValues\":\"b1,b2\",\"id\":345,\"productId\":83}]}'), (4577,83,'XXXL,蓝色,b2,a1',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a2\",\"volume\":88,\"weight\":88}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":342,\"productId\":83},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":343,\"productId\":83},{\"attrName\":\"attr1\",\"attrValues\":\"a1,a2\",\"id\":344,\"productId\":83},{\"attrName\":\"attr2\",\"attrValues\":\"b1,b2\",\"id\":345,\"productId\":83}]}'), (4578,83,'XXXL,蓝色,b1,a2',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a2\",\"volume\":88,\"weight\":88}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":342,\"productId\":83},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":343,\"productId\":83},{\"attrName\":\"attr1\",\"attrValues\":\"a1,a2\",\"id\":344,\"productId\":83},{\"attrName\":\"attr2\",\"attrValues\":\"b1,b2\",\"id\":345,\"productId\":83}]}'), (4579,83,'XXXL,蓝色,b2,a2',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a2\",\"volume\":88,\"weight\":88}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":342,\"productId\":83},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":343,\"productId\":83},{\"attrName\":\"attr1\",\"attrValues\":\"a1,a2\",\"id\":344,\"productId\":83},{\"attrName\":\"attr2\",\"attrValues\":\"b1,b2\",\"id\":345,\"productId\":83}]}'), (4580,83,'S,蓝色,b1,a1',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a2\",\"volume\":88,\"weight\":88}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":342,\"productId\":83},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":343,\"productId\":83},{\"attrName\":\"attr1\",\"attrValues\":\"a1,a2\",\"id\":344,\"productId\":83},{\"attrName\":\"attr2\",\"attrValues\":\"b1,b2\",\"id\":345,\"productId\":83}]}'), (4581,83,'S,蓝色,b2,a1',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a2\",\"volume\":88,\"weight\":88}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":342,\"productId\":83},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":343,\"productId\":83},{\"attrName\":\"attr1\",\"attrValues\":\"a1,a2\",\"id\":344,\"productId\":83},{\"attrName\":\"attr2\",\"attrValues\":\"b1,b2\",\"id\":345,\"productId\":83}]}'), (4582,83,'S,蓝色,b1,a2',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a2\",\"volume\":88,\"weight\":88}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":342,\"productId\":83},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":343,\"productId\":83},{\"attrName\":\"attr1\",\"attrValues\":\"a1,a2\",\"id\":344,\"productId\":83},{\"attrName\":\"attr2\",\"attrValues\":\"b1,b2\",\"id\":345,\"productId\":83}]}'), (4583,83,'S,蓝色,b2,a2',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"attrValue\":[{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"白色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"黑色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"红色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"L\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"\",\"brokerage\":0,\"cost\":0,\"image\":\"\",\"otPrice\":0,\"price\":0,\"productId\":83,\"stock\":0,\"volume\":0,\"weight\":0},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"XXXL\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"S,蓝色,b2,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a1\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b1,a2\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b1\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a1\",\"volume\":88,\"weight\":88},{\"attrValue\":{\"大小\":\"S\",\"颜色\":\"蓝色\",\"attr2\":\"b2\",\"attr1\":\"a2\"},\"barCode\":\"88\",\"brokerage\":0,\"cost\":88,\"image\":\"https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\",\"otPrice\":88,\"price\":88,\"productId\":83,\"stock\":88,\"suk\":\"XXXL,蓝色,b2,a2\",\"volume\":88,\"weight\":88}],\"attr\":[{\"attrName\":\"颜色\",\"attrValues\":\"白色,黑色,红色,蓝色\",\"id\":342,\"productId\":83},{\"attrName\":\"大小\",\"attrValues\":\"L,XL,XXL,XXXL,S\",\"id\":343,\"productId\":83},{\"attrName\":\"attr1\",\"attrValues\":\"a1,a2\",\"id\":344,\"productId\":83},{\"attrName\":\"attr2\",\"attrValues\":\"b1,b2\",\"id\":345,\"productId\":83}]}'), (4584,86,'默认',1,0,1.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/30/36358bf3f52e40f4b8f451e470e2279arb99p3exzl.jpg','',0.00,'',1.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (4586,88,'L,白色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\"}'), (4587,88,'XL,白色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\"}'), (4588,88,'XXL,白色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\"}'), (4589,88,'XXXL,白色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\"}'), (4590,88,'S,白色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\"}'), (4591,88,'L,黑色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\"}'), (4592,88,'XL,黑色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\"}'), (4593,88,'XXL,黑色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\"}'), (4594,88,'XXXL,黑色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\"}'), (4595,88,'S,黑色',98,1,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\"}'), (4596,88,'L,红色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\"}'), (4597,88,'XL,红色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\"}'), (4598,88,'XXL,红色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\"}'), (4599,88,'XXXL,红色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\"}'), (4600,88,'S,红色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\"}'), (4601,88,'L,蓝色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\"}'), (4602,88,'XL,蓝色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\"}'), (4603,88,'XXL,蓝色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\"}'), (4604,88,'XXXL,蓝色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\"}'), (4605,88,'S,蓝色',99,0,99.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',99.00,'99',99.00,99.00,99.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\"}'), (4606,89,'默认',88,0,88.00,'','',0.00,'',88.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (4607,90,'L,白色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\"}'), (4608,90,'XL,白色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\"}'), (4609,90,'XXL,白色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\"}'), (4610,90,'XXXL,白色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\"}'), (4611,90,'S,白色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\"}'), (4612,90,'L,黑色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\"}'), (4613,90,'XL,黑色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\"}'), (4614,90,'XXL,黑色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\"}'), (4615,90,'XXXL,黑色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\"}'), (4616,90,'S,黑色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\"}'), (4617,90,'L,红色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\"}'), (4618,90,'XL,红色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\"}'), (4619,90,'XXL,红色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\"}'), (4620,90,'XXXL,红色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\"}'), (4621,90,'S,红色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\"}'), (4622,90,'L,蓝色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\"}'), (4623,90,'XL,蓝色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\"}'), (4624,90,'XXL,蓝色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\"}'), (4625,90,'XXXL,蓝色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\"}'), (4626,90,'S,蓝色',88,0,88.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',88.00,'88',88.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\"}'), (4687,91,'L,白色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\"}'), (4688,91,'XL,白色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\"}'), (4689,91,'XXL,白色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\"}'), (4690,91,'XXXL,白色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\"}'), (4691,91,'S,白色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\"}'), (4692,91,'L,黑色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\"}'), (4693,91,'XL,黑色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\"}'), (4694,91,'XXL,黑色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\"}'), (4695,91,'XXXL,黑色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\"}'), (4696,91,'S,黑色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\"}'), (4697,91,'L,红色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\"}'), (4698,91,'XL,红色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\"}'), (4699,91,'XXL,红色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\"}'), (4700,91,'XXXL,红色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\"}'), (4701,91,'S,红色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\"}'), (4702,91,'L,蓝色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\"}'), (4703,91,'XL,蓝色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\"}'), (4704,91,'XXL,蓝色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\"}'), (4705,91,'XXXL,蓝色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\"}'), (4706,91,'S,蓝色',6,0,6.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg','',6.00,'6',6.00,6.00,6.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\"}'), (4794,87,'A,一型',6,0,1.00,'','',2.00,'8',3.00,89.00,8.00,0.00,0.00,0,NULL,NULL,'{\"样式\":\"A\",\"型号\":\"一型\"}'), (4795,87,'B,一型',6,0,1.00,'','',2.00,'8',3.00,89.00,8.00,0.00,0.00,0,NULL,NULL,'{\"样式\":\"B\",\"型号\":\"一型\"}'), (4796,87,'C,一型',6,0,1.00,'','',2.00,'8',3.00,89.00,8.00,0.00,0.00,0,NULL,NULL,'{\"样式\":\"C\",\"型号\":\"一型\"}'), (4797,87,'A,二型',6,0,1.00,'','',2.00,'8',3.00,89.00,8.00,0.00,0.00,0,NULL,NULL,'{\"样式\":\"A\",\"型号\":\"二型\"}'), (4798,87,'B,二型',6,0,1.00,'','',2.00,'8',3.00,89.00,8.00,0.00,0.00,0,NULL,NULL,'{\"样式\":\"B\",\"型号\":\"二型\"}'), (4799,87,'C,二型',6,0,1.00,'','',2.00,'8',3.00,89.00,8.00,0.00,0.00,0,NULL,NULL,'{\"样式\":\"C\",\"型号\":\"二型\"}'), (4800,93,'默认',1,0,1.00,'','',0.00,'',1.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (4801,94,'默认',1,0,1.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/04/687dec1076764d4a972065155c761637jp1ap7cuym.jpg','',0.00,'',1.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (4802,95,'默认',1,0,1.00,'','',0.00,'',1.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (4803,96,'默认',1,0,1.00,'','',0.00,'',1.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (4804,97,'默认',1,0,1.00,'','',0.00,'',1.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (4805,98,'默认',1,0,1.00,'','',0.00,'',1.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (4833,106,'默认',1200,0,100.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/1938287114874149a87250f35c7c9e4f8dlna48p66.jpg','',50.00,'12313123',300.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (4884,107,'默认',1,0,1.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/30003ce63ff8423286448c2726e7c8ffm9g4fipvvc.png','',0.00,'',1.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (4885,108,'默认',5,0,3.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/8ce87292dbd1472a9c0189612750a698mn9oqrqfzi.png','',0.00,'',4.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (4887,102,'白色,红色',35,65,0.10,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/3fc403bcde39410b8d993796ad2847bf7mz1nt5q8e.jpg','',20.00,'',20.00,20.00,20.00,0.00,0.00,0,NULL,NULL,'{\"5.8英寸\":\"白色\",\"6.1英寸\":\"红色\"}'), (4928,92,'L,白色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\"}'), (4929,92,'XL,白色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\"}'), (4930,92,'XXL,白色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\"}'), (4931,92,'XXXL,白色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\"}'), (4932,92,'S,白色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\"}'), (4933,92,'L,黑色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\"}'), (4934,92,'XL,黑色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\"}'), (4935,92,'XXL,黑色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\"}'), (4936,92,'XXXL,黑色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\"}'), (4937,92,'S,黑色',9990,9,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\"}'), (4938,92,'L,红色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\"}'), (4939,92,'XL,红色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\"}'), (4940,92,'XXL,红色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\"}'), (4941,92,'XXXL,红色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\"}'), (4942,92,'S,红色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\"}'), (4943,92,'L,蓝色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\"}'), (4944,92,'XL,蓝色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\"}'), (4945,92,'XXL,蓝色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\"}'), (4946,92,'XXXL,蓝色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\"}'), (4947,92,'S,蓝色',9999,0,900.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','',9.00,'999',9.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\"}'), (4948,110,'白色,红色',87,1,888.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',88.00,'88',8.00,88.00,88.00,0.00,0.00,0,NULL,NULL,'{\"5.8英寸\":\"白色\",\"6.1英寸\":\"红色\"}'), (4979,99,'L,白色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\"}'), (4980,99,'XL,白色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\"}'), (4981,99,'XXL,白色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\"}'), (4982,99,'XXXL,白色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\"}'), (4983,99,'S,白色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\"}'), (4984,99,'L,黑色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\"}'), (4985,99,'XL,黑色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\"}'), (4986,99,'XXL,黑色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\"}'), (4987,99,'XXXL,黑色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\"}'), (4988,99,'S,黑色',9969,30,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\"}'), (4989,99,'L,红色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\"}'), (4990,99,'XL,红色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\"}'), (4991,99,'XXL,红色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\"}'), (4992,99,'XXXL,红色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\"}'), (4993,99,'S,红色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\"}'), (4994,99,'L,蓝色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\"}'), (4995,99,'XL,蓝色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\"}'), (4996,99,'XXL,蓝色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\"}'), (4997,99,'XXXL,蓝色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\"}'), (4998,99,'S,蓝色',9999,0,9.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',9.00,'9',9.00,9.00,1.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\"}'), (5014,113,'白色,红色',48,2,10.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/store/2020/08/11/c79e9cda47db47748da64fd5bd4d1a30l2wpoycstu.png','',5.00,'',50.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"5.8英寸\":\"白色\",\"6.1英寸\":\"红色\"}'), (5015,113,'蓝色,红色',0,0,10.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/store/2020/08/11/c79e9cda47db47748da64fd5bd4d1a30l2wpoycstu.png','',5.00,'',50.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"5.8英寸\":\"蓝色\",\"6.1英寸\":\"红色\"}'), (5026,101,'默认',12,0,12.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/d9e18566775f4ca0a9d64bc986ad777ah43lkqg6aq.jpg','',5.00,'123123',123.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (5033,116,'白色,红色',777,0,777.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/f5aca226e3474a7fbaf1cd6843453090jmzxfdb941.jpg','',7.00,'7',7.00,7.00,7.00,0.00,0.00,0,NULL,NULL,'{\"5.8英寸\":\"白色\",\"6.1英寸\":\"红色\"}'), (5034,116,'白色,迷彩',777,0,777.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/f5aca226e3474a7fbaf1cd6843453090jmzxfdb941.jpg','',7.00,'7',7.00,7.00,7.00,0.00,0.00,0,NULL,NULL,'{\"5.8英寸\":\"白色\",\"6.1英寸\":\"迷彩\"}'), (5035,116,'黑色,红色',777,0,777.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/f5aca226e3474a7fbaf1cd6843453090jmzxfdb941.jpg','',7.00,'7',7.00,7.00,7.00,0.00,0.00,0,NULL,NULL,'{\"5.8英寸\":\"黑色\",\"6.1英寸\":\"红色\"}'), (5036,116,'黑色,迷彩',777,0,777.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/f5aca226e3474a7fbaf1cd6843453090jmzxfdb941.jpg','',7.00,'7',7.00,7.00,7.00,0.00,0.00,0,NULL,NULL,'{\"5.8英寸\":\"黑色\",\"6.1英寸\":\"迷彩\"}'), (5038,117,'白色,红色',88888,0,8888.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/store/2020/08/13/5771a123b9a24666b5cdcf531f7744d6grduvuarjw.png','',8888.00,'88',888.00,8.00,8.00,0.00,0.00,0,NULL,NULL,'{\"5.8英寸\":\"白色\",\"6.1英寸\":\"红色\"}'), (5046,119,'白色,红色',77,0,77.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/store/2020/08/13/5771a123b9a24666b5cdcf531f7744d6grduvuarjw.png','',17.00,'77',77.00,77.00,77.00,0.00,0.00,0,NULL,NULL,'{\"5.8英寸\":\"白色\",\"6.1英寸\":\"红色\"}'), (5049,121,'默认',100,0,1500.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/1d309020b173440a818fd3f76d58030fk7xdl9bdpz.png','',0.00,'',3999.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (5050,84,'L,白色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"白色\"}'), (5051,84,'XL,白色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"白色\"}'), (5052,84,'XXL,白色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"白色\"}'), (5053,84,'XXXL,白色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"白色\"}'), (5054,84,'S,白色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"白色\"}'), (5055,84,'L,黑色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"黑色\"}'), (5056,84,'XL,黑色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"黑色\"}'), (5057,84,'XXL,黑色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"黑色\"}'), (5058,84,'XXXL,黑色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"黑色\"}'), (5059,84,'S,黑色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"黑色\"}'), (5060,84,'L,红色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"红色\"}'), (5061,84,'XL,红色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"红色\"}'), (5062,84,'XXL,红色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"红色\"}'), (5063,84,'XXXL,红色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"红色\"}'), (5064,84,'S,红色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"红色\"}'), (5065,84,'L,蓝色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"L\",\"颜色\":\"蓝色\"}'), (5066,84,'XL,蓝色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XL\",\"颜色\":\"蓝色\"}'), (5067,84,'XXL,蓝色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXL\",\"颜色\":\"蓝色\"}'), (5068,84,'XXXL,蓝色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"XXXL\",\"颜色\":\"蓝色\"}'), (5069,84,'S,蓝色',999,0,999.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','',999.00,'9',999.00,9.00,9.00,0.00,0.00,0,NULL,NULL,'{\"大小\":\"S\",\"颜色\":\"蓝色\"}'), (5072,120,'默认',22,0,22.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/store/2020/08/13/5771a123b9a24666b5cdcf531f7744d6grduvuarjw.png','',0.00,'',22.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (5073,123,'默认',3,0,3.00,'image/store/2020/08/13/5771a123b9a24666b5cdcf531f7744d6grduvuarjw.png','',0.00,'',3.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (5080,124,'默认',100,0,156.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/421de3ec45a7462e855324463743c5f8wdto4m4hof.jpg','',99.00,'11011',298.00,1.00,1.00,0.00,0.00,0,NULL,NULL,NULL), (5081,125,'默认',65,0,65.00,'image/content/2020/08/13/e3ab04e8645d4018b86c37e8bd5e8532ph4r9xmziw.png','',0.00,'',65.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (5127,115,'默认',196,4,10.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/setting/2020/08/12/71f30b58a2da4fc59e20e28cb6c36299v8j7iqamdq.png','',20.00,'',50.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL), (5140,118,'默认',50,0,1.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/1be6660a6769401795b0703d12f9f2a8wdgogu15d2.jpg','',1.00,'1212',100.00,1.00,1.00,0.00,0.00,0,NULL,NULL,NULL), (5142,126,'1,1',100,0,100.00,'','',50.00,'',200.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"颜色\":\"1\",\"尺码\":\"1\"}'), (5143,126,'1,2',500,0,100.00,'','',50.00,'',200.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"颜色\":\"1\",\"尺码\":\"2\"}'), (5144,126,'1,3',500,0,100.00,'','',50.00,'',200.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"颜色\":\"1\",\"尺码\":\"3\"}'), (5145,126,'2,1',500,0,100.00,'','',50.00,'',200.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"颜色\":\"2\",\"尺码\":\"1\"}'), (5146,126,'2,2',500,0,100.00,'','',50.00,'',200.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"颜色\":\"2\",\"尺码\":\"2\"}'), (5147,126,'2,3',500,0,100.00,'','',50.00,'',200.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"颜色\":\"2\",\"尺码\":\"3\"}'), (5148,126,'3,1',500,0,100.00,'','',50.00,'',200.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"颜色\":\"3\",\"尺码\":\"1\"}'), (5149,126,'3,2',500,0,100.00,'','',50.00,'',200.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"颜色\":\"3\",\"尺码\":\"2\"}'), (5150,126,'3,3',500,0,100.00,'','',50.00,'',200.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"颜色\":\"3\",\"尺码\":\"3\"}'), (5151,126,'4,1',500,0,100.00,'','',50.00,'',200.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"颜色\":\"4\",\"尺码\":\"1\"}'), (5152,126,'4,2',500,0,100.00,'','',50.00,'',200.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"颜色\":\"4\",\"尺码\":\"2\"}'); INSERT INTO `eb_store_product_attr_value` (`id`, `product_id`, `suk`, `stock`, `sales`, `price`, `image`, `unique`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`) VALUES (5153,126,'4,3',500,0,100.00,'','',50.00,'',200.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"颜色\":\"4\",\"尺码\":\"3\"}'), (5154,126,'5,1',500,0,100.00,'','',50.00,'',200.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"颜色\":\"5\",\"尺码\":\"1\"}'), (5155,126,'5,2',500,0,100.00,'','',50.00,'',200.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"颜色\":\"5\",\"尺码\":\"2\"}'), (5156,126,'5,3',500,0,100.00,'','',50.00,'',200.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"颜色\":\"5\",\"尺码\":\"3\"}'), (5157,127,'无需合约版,白色,64G',100,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','',2000.00,'123123',7000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"白色\",\"储存容量\":\"64G\"}'), (5158,127,'无需合约版,白色,128G',100,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','',2000.00,'123123',7000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"白色\",\"储存容量\":\"128G\"}'), (5159,127,'无需合约版,白色,256G',100,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','',2000.00,'123123',7000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"白色\",\"储存容量\":\"256G\"}'), (5160,127,'无需合约版,黑色,64G',100,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','',2000.00,'123123',7000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"黑色\",\"储存容量\":\"64G\"}'), (5161,127,'无需合约版,黑色,128G',100,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','',2000.00,'123123',7000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"黑色\",\"储存容量\":\"128G\"}'), (5162,127,'无需合约版,黑色,256G',100,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','',2000.00,'123123',7000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"黑色\",\"储存容量\":\"256G\"}'), (5163,127,'无需合约版,红色,64G',100,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','',2000.00,'123123',7000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"红色\",\"储存容量\":\"64G\"}'), (5164,127,'无需合约版,红色,128G',100,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','',2000.00,'123123',7000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"红色\",\"储存容量\":\"128G\"}'), (5165,127,'无需合约版,红色,256G',100,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','',2000.00,'123123',7000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"红色\",\"储存容量\":\"256G\"}'), (5166,127,'无需合约版,蓝色,64G',100,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','',2000.00,'123123',7000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"蓝色\",\"储存容量\":\"64G\"}'), (5167,127,'无需合约版,蓝色,128G',100,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','',2000.00,'123123',7000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"蓝色\",\"储存容量\":\"128G\"}'), (5168,127,'无需合约版,蓝色,256G',100,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','',2000.00,'123123',7000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"蓝色\",\"储存容量\":\"256G\"}'), (5169,128,'无需合约版,白色,64G',10,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png','',1000.00,'12312123',6000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"白色\",\"储存容量\":\"64G\"}'), (5170,128,'无需合约版,白色,128G',10,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png','',1000.00,'12312123',6000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"白色\",\"储存容量\":\"128G\"}'), (5171,128,'无需合约版,白色,256G',10,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png','',1000.00,'12312123',6000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"白色\",\"储存容量\":\"256G\"}'), (5172,128,'无需合约版,黑色,64G',10,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png','',1000.00,'12312123',6000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"黑色\",\"储存容量\":\"64G\"}'), (5173,128,'无需合约版,黑色,128G',10,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png','',1000.00,'12312123',6000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"黑色\",\"储存容量\":\"128G\"}'), (5174,128,'无需合约版,黑色,256G',10,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png','',1000.00,'12312123',6000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"黑色\",\"储存容量\":\"256G\"}'), (5175,128,'无需合约版,红色,64G',10,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png','',1000.00,'12312123',6000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"红色\",\"储存容量\":\"64G\"}'), (5176,128,'无需合约版,红色,128G',10,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png','',1000.00,'12312123',6000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"红色\",\"储存容量\":\"128G\"}'), (5177,128,'无需合约版,红色,256G',10,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png','',1000.00,'12312123',6000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"红色\",\"储存容量\":\"256G\"}'), (5178,128,'无需合约版,蓝色,64G',10,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png','',1000.00,'12312123',6000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"蓝色\",\"储存容量\":\"64G\"}'), (5179,128,'无需合约版,蓝色,128G',10,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png','',1000.00,'12312123',6000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"蓝色\",\"储存容量\":\"128G\"}'), (5180,128,'无需合约版,蓝色,256G',10,0,5000.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png','',1000.00,'12312123',6000.00,0.00,0.00,0.00,0.00,0,NULL,NULL,'{\"网络类型\":\"无需合约版\",\"机身颜色\":\"蓝色\",\"储存容量\":\"256G\"}'), (5181,100,'默认',10,0,50.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/content/2020/08/12/13813b1c58914aeda67d8a4ebc4f8aef21sje7kyiy.jpg','',0.00,'',100.00,0.00,0.00,0.00,0.00,0,NULL,NULL,NULL); /*!40000 ALTER TABLE `eb_store_product_attr_value` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_store_product_cate # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_product_cate`; CREATE TABLE `eb_store_product_cate` ( `id` int(11) NOT NULL AUTO_INCREMENT, `product_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品id', `cate_id` int(11) NOT NULL DEFAULT '0' COMMENT '分类id', `add_time` int(11) NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='商品分类辅助表'; LOCK TABLES `eb_store_product_cate` WRITE; /*!40000 ALTER TABLE `eb_store_product_cate` DISABLE KEYS */; INSERT INTO `eb_store_product_cate` (`id`, `product_id`, `cate_id`, `add_time`) VALUES (17,100,191,1597305572), (20,100,191,1597305572), (22,100,191,1597305572), (23,100,191,1597305572), (24,100,191,1597305572), (25,100,191,1597305572), (26,100,191,1597305572), (27,100,191,1597305572), (28,100,191,1597305572), (29,100,191,1597305572), (30,100,191,1597305572), (31,100,191,1597305572), (32,100,191,1597305572), (33,100,191,1597305572), (34,100,191,1597305572), (35,100,191,1597305572), (36,100,191,1597305572), (37,100,191,1597305572), (38,100,191,1597305572), (39,100,191,1597305572), (40,100,191,1597305572), (41,100,191,1597305572), (45,100,191,1597305572), (46,100,191,1597305572), (47,100,191,1597305572), (48,100,191,1597305572), (49,100,191,1597305572), (50,100,191,1597305572), (51,100,191,1597305572), (52,100,191,1597305572), (53,100,191,1597305572), (54,100,191,1597305572), (55,100,191,1597305572), (56,100,191,1597305572), (57,100,191,1597305572), (58,100,191,1597305572), (59,100,191,1597305572), (60,100,191,1597305572), (61,100,191,1597305572), (62,100,191,1597305572), (63,100,191,1597305572), (64,100,191,1597305572); /*!40000 ALTER TABLE `eb_store_product_cate` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_store_product_coupon # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_product_coupon`; CREATE TABLE `eb_store_product_coupon` ( `id` int(10) NOT NULL AUTO_INCREMENT, `product_id` int(10) NOT NULL DEFAULT '0' COMMENT '商品id', `issue_coupon_id` int(10) NOT NULL DEFAULT '0' COMMENT '优惠劵id', `add_time` int(10) NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT; LOCK TABLES `eb_store_product_coupon` WRITE; /*!40000 ALTER TABLE `eb_store_product_coupon` DISABLE KEYS */; INSERT INTO `eb_store_product_coupon` (`id`, `product_id`, `issue_coupon_id`, `add_time`) VALUES (26,98,1,1597032830), (32,107,12,1597068930), (33,107,5,1597068930), (34,107,12,1597068930), (35,107,5,1597068930), (36,108,13,1597069204), (37,108,4,1597069204), (38,108,5,1597069204), (39,110,16,1597202671), (40,110,15,1597202671), (41,110,14,1597202671), (42,110,13,1597202671), (43,110,12,1597202671), (44,110,11,1597202671), (45,110,10,1597202671), (46,110,9,1597202671), (47,110,7,1597202671), (48,110,6,1597202671), (49,113,21,1597243423), (50,115,22,1597283850), (51,116,18,1597296741), (52,116,15,1597296741), (53,116,14,1597296741), (54,116,4,1597296741), (55,116,2,1597296741), (56,116,1,1597296741), (57,117,22,1597297845), (59,118,23,1597298594), (60,119,21,1597298663), (61,120,22,1597298865), (62,121,24,1597298924), (63,123,22,1597299340), (64,124,23,1597299363), (65,125,22,1597299682), (66,126,24,1597299688); /*!40000 ALTER TABLE `eb_store_product_coupon` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_store_product_description # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_product_description`; CREATE TABLE `eb_store_product_description` ( `product_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品ID', `description` text NOT NULL COMMENT '商品详情', `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '商品类型', KEY `product_id` (`product_id`,`type`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT; LOCK TABLES `eb_store_product_description` WRITE; /*!40000 ALTER TABLE `eb_store_product_description` DISABLE KEYS */; INSERT INTO `eb_store_product_description` (`product_id`, `description`, `type`) VALUES (1,'

爱搭搭大所多

',0), (2,'

11111

',0), (3,'

关山口顶顶顶

',0), (5,'

ff方法

',0), (6,'

11111

',0), (7,'

11111

',0), (8,'

111111222222

',0), (9,'

stivepeim多规格测试stivepeim多规格测试stivepeim多规格测试stivepeim多规格测试

',0), (10,'

多规格保存1多规格保存1多规格保存1多规格保存1

',0), (12,'

stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002

',0), (20,'

stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002

',0), (21,'

stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002

',0), (22,'

stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002

',0), (26,'

stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002

',0), (13,'

stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002

',0), (28,'

stivepeimTeststivepeimTeststivepeimTeststivepeimTeststivepeimTest

',0), (29,'

1

',0), (30,'

stivepeimTest0722stivepeimTest0722stivepeimTest0722stivepeimTest0722

',0), (36,'

stivepeim singeValuestivepeim singeValuestivepeim singeValuestivepeim singeValue

',0), (39,'

stivepeim singeValuestivepeim singeValuestivepeim singeValuestivepeim singeValue

',0), (40,'

正确数据产品1正确数据产品1正确数据产品1正确数据产品1正确数据产品1正确数据产品1正确数据产品1正确数据产品1

',0), (41,'',0), (42,'

testproductAddtestproductAddtestproductAddtestproductAdd

',0), (44,'

testproductAddtestproductAddtestproductAddtestproductAdd

',0), (47,'

testproductAddtestproductAddtestproductAddtestproductAdd

',0), (51,'

testproductAddtestproductAddtestproductAddtestproductAdd

',0), (52,'',0), (56,'',0), (57,'',0), (58,'',0), (59,'

stivepeimTeststivepeimTeststivepeimTeststivepeimTeststivepeimTest

',0), (60,'

testAttr

',0), (61,'

testAttr

',0), (62,'

testAttr

',0), (63,'

testAttr

',0), (64,'

testAttr

',0), (66,'

testAttr

',0), (68,'

testAttr

',0), (71,'

testAttr

',0), (73,'

testAttr

',0), (70,'

testAttr

',0), (72,'',0), (27,'

达大神大

',0), (74,'

stivepeimTestPricestivepeimTestPricestivepeimTestPricestivepeimTestPrice

',0), (25,'

stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002

',0), (23,'

stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002

',0), (11,'

的发

',0), (24,'

stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002stivepeimTest002

',0), (76,'

stivepeimTestPricestivepeimTestPricestivepeimTestPricestivepeimTestPrice

',0), (77,'

testAttr

',0), (78,'

testAttr

',0), (79,'

testAttr

',0), (81,'

testProductEdittestProductEdittestProductEdittestProductEdittestProductEdittestProductEdit

',0), (82,'

驱蚊器无群无群无群无群无

',0), (85,'',0), (83,'

testAttr

',0), (86,'',0), (88,'

购买测试购买测试购买测试

',0), (89,'

单属性

',0), (90,'

Test0731

',0), (91,'

0730Test20730Test20730Test2

',0), (87,'',0), (93,'

testCouponstestCouponstestCoupons

',0), (94,'

测优惠券

',0), (95,'

testCoupons002

',0), (96,'

testCouponTest004testCouponTest004

',0), (97,'',0), (98,'

couponsTest005

',0), (106,'

按时大苏打都撒阿萨大阿萨大阿萨大阿萨大阿萨大按时大苏打阿萨大阿萨大阿萨大阿萨大

',0), (107,'',0), (108,'',0), (102,'

是的是的收到

',0), (92,'

0730Test30730Test30730Test30730Test30730Test3

',0), (110,'

stivepeim测试商品001stivepeim测试商品001stivepeim测试商品001

',0), (99,'

stivepeim测试勿动stivepeim测试勿动stivepeim测试勿动stivepeim测试勿动

',0), (111,'

商品详情



',0), (113,'

方式宣传宣传

',0), (112,'



',0), (114,'',0), (101,'',0), (116,'

测试banner图imgPath测试banner图imgPath测试banner图imgPath测试banner图imgPath

',0), (117,'

测试banner图imgPathAgain测试banner图imgPathAgain测试banner图imgPathAgain测试banner图imgPathAgain测试banner图imgPathAgain

',0), (119,'

测试商品img创建path测试商品img创建path测试商品img创建path

',0), (121,'


',0), (84,'


',0), (120,'

测试商品img创建path1测试商品img创建path1测试商品img创建path1测试商品img创建path1

',0), (123,'

testImgPath1testImgPath1testImgPath1testImgPath1

',0), (124,'


',0), (125,'

一段美妙的问题和图片



',0), (115,'

阿萨斯

',0), (118,'


',0), (126,'


',0), (127,'


',0), (128,'


',0), (100,'

阿萨斯

',0); /*!40000 ALTER TABLE `eb_store_product_description` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_store_product_relation # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_product_relation`; CREATE TABLE `eb_store_product_relation` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'id', `uid` int(10) unsigned NOT NULL COMMENT '用户ID', `product_id` int(10) unsigned NOT NULL COMMENT '商品ID', `type` varchar(32) NOT NULL COMMENT '类型(收藏(collect)、点赞(like))', `category` varchar(32) NOT NULL COMMENT '某种类型的商品(普通商品、秒杀商品)', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`), UNIQUE KEY `uid` (`uid`,`product_id`,`type`,`category`) USING BTREE, KEY `type` (`type`) USING BTREE, KEY `category` (`category`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品点赞和收藏表'; # Dump of table eb_store_product_reply # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_product_reply`; CREATE TABLE `eb_store_product_reply` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '评论ID', `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户ID', `oid` int(11) NOT NULL DEFAULT '0' COMMENT '订单ID', `unique` varchar(32) NOT NULL COMMENT '商品唯一id', `product_id` int(11) NOT NULL COMMENT '商品id', `reply_type` varchar(32) NOT NULL DEFAULT 'product' COMMENT '某种商品类型(普通商品、秒杀商品)', `product_score` tinyint(1) NOT NULL COMMENT '商品分数', `service_score` tinyint(1) NOT NULL COMMENT '服务分数', `comment` varchar(512) NOT NULL COMMENT '评论内容', `pics` text NOT NULL COMMENT '评论图片', `merchant_reply_content` varchar(300) DEFAULT NULL COMMENT '管理员回复内容', `merchant_reply_time` int(11) DEFAULT NULL COMMENT '管理员回复时间', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0未删除1已删除', `is_reply` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0未回复1已回复', `nickname` varchar(64) NOT NULL COMMENT '用户名称', `avatar` varchar(255) NOT NULL COMMENT '用户头像', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `parent_id` (`reply_type`) USING BTREE, KEY `is_del` (`is_del`) USING BTREE, KEY `product_score` (`product_score`) USING BTREE, KEY `service_score` (`service_score`) USING BTREE, KEY `uid+oid` (`uid`,`oid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='评论表'; # Dump of table eb_store_product_rule # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_product_rule`; CREATE TABLE `eb_store_product_rule` ( `id` int(10) NOT NULL AUTO_INCREMENT, `rule_name` varchar(32) NOT NULL COMMENT '规格名称', `rule_value` text NOT NULL COMMENT '规格值', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='商品规则值(规格)表'; LOCK TABLES `eb_store_product_rule` WRITE; /*!40000 ALTER TABLE `eb_store_product_rule` DISABLE KEYS */; INSERT INTO `eb_store_product_rule` (`id`, `rule_name`, `rule_value`) VALUES (6,'颜色','[{\"value\":\"5.8\\u82f1\\u5bf8\",\"detail\":[\"\\u767d\\u8272\"]},{\"value\":\"6.1\\u82f1\\u5bf8\",\"detail\":[\"\\u7ea2\\u8272\"]}]'), (7,'测试','[{\"value\":\"\\u6d4b\\u8bd5\\u89c4\\u683c\",\"detail\":[\"10\",\"20\",\"30\",\"40\",\"50\",\"60\",\"70\",\"80\",\"90\",\"100\",\"110\",\"120\"]},{\"value\":\"\\u6d4b\\u8bd51\",\"detail\":[\"1\",\"2\",\"3\",\"11\",\"12\"]}]'), (8,'颜色','[{\"value\":\"\\u989c\\u8272\",\"detail\":[\"1\",\"2\",\"3\",\"4\",\"5\"]},{\"value\":\"\\u5c3a\\u7801\",\"detail\":[\"1\",\"2\",\"3\"]}]'), (16,'我','[{\"title\":\"额\",\"detail\":[\"人\"]}]'), (17,'杯子','[{\"title\":\"材质\",\"detail\":[\"玻璃\",\"木质\"],\"inputVisible\":false},{\"title\":\"大小\",\"detail\":[\"500ml\",\"300ml\"],\"inputVisible\":false}]'), (19,'adidas衣服II','[{\"title\":\"颜色\",\"detail\":[\"白色\",\"黑色\"],\"inputVisible\":false},{\"title\":\"尺码\",\"detail\":[\"xxl / 165\",\"xl / 160\",\"xxxl / 170\"],\"inputVisible\":false}]'), (20,'adidas鞋类','[{\"title\":\"颜色\",\"detail\":[\"白色\",\"迷彩\"],\"inputVisible\":false},{\"title\":\"尺码\",\"detail\":[\"42\",\"43\",\"44\",\"45\"],\"inputVisible\":false}]'), (35,'asd ','[{\"title\":\"asd\",\"detail\":[\"asd \"]}]'), (36,'最后一条数据','[{\"title\":\"sss\",\"detail\":[\"ssss\"]}]'), (37,'多规格测试勿动','[{\"title\":\"颜色\",\"detail\":[\"黑\",\"白\",\"红\"],\"inputVisible\":false},{\"title\":\"rom\",\"detail\":[\"6\",\"8\",\"16\",\"32\"],\"inputVisible\":false}]'), (38,'测试多规格','[{\"title\":\"T\",\"detail\":[\"1\",\"2\",\"3\"],\"inputVisible\":false},{\"title\":\"F\",\"detail\":[\"1\",\"2\",\"3\"],\"inputVisible\":false}]'), (39,'速度闪躲','[{\"title\":\"的\",\"detail\":[\"额\"]}]'), (40,'测测拉','[{\"value\":\"鞋\",\"detail\":[\"红色\",\"黑色\"],\"inputVisible\":false}]'), (41,'测测哦哦哦','[{\"value\":\"颜色\",\"detail\":[\"红\",\"黑\"],\"inputVisible\":false}]'), (42,'Apple/苹果 iPhone 11','[{\"value\":\"网络类型\",\"detail\":[\"无需合约版\"]},{\"value\":\"机身颜色\",\"detail\":[\"白色\",\"黑色\",\"红色\",\"蓝色\"],\"inputVisible\":false},{\"value\":\"储存容量\",\"detail\":[\"64G\",\"128G\",\"256G\"],\"inputVisible\":false}]'); /*!40000 ALTER TABLE `eb_store_product_rule` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_store_seckill # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_seckill`; CREATE TABLE `eb_store_seckill` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '商品秒杀商品表id', `product_id` int(10) unsigned NOT NULL COMMENT '商品id', `image` varchar(255) NOT NULL COMMENT '推荐图', `images` varchar(2000) NOT NULL COMMENT '轮播图', `title` varchar(255) NOT NULL COMMENT '活动标题', `info` varchar(255) NOT NULL COMMENT '简介', `price` decimal(10,2) unsigned NOT NULL COMMENT '价格', `cost` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '成本', `ot_price` decimal(10,2) unsigned NOT NULL COMMENT '原价', `give_integral` decimal(10,2) unsigned NOT NULL COMMENT '返多少积分', `sort` int(10) unsigned NOT NULL COMMENT '排序', `stock` int(10) unsigned NOT NULL COMMENT '库存', `sales` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '销量', `unit_name` varchar(16) NOT NULL COMMENT '单位名', `postage` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '邮费', `description` text COMMENT '内容', `start_time` varchar(128) NOT NULL COMMENT '开始时间', `stop_time` varchar(128) NOT NULL COMMENT '结束时间', `add_time` varchar(128) NOT NULL COMMENT '添加时间', `status` tinyint(1) unsigned NOT NULL COMMENT '商品状态', `is_postage` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否包邮', `is_hot` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '热门推荐', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '删除 0未删除1已删除', `num` int(11) unsigned NOT NULL COMMENT '最多秒杀几个', `is_show` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '显示', `time_id` int(11) DEFAULT NULL COMMENT '时间段ID', `temp_id` int(11) DEFAULT NULL COMMENT '运费模板ID', `weight` decimal(8,2) DEFAULT '0.00' COMMENT '商品重量', `volume` decimal(8,2) DEFAULT '0.00' COMMENT '商品体积', `quota` int(10) NOT NULL DEFAULT '0' COMMENT '限购总数', `quota_show` int(10) NOT NULL DEFAULT '0' COMMENT '限购总数显示', PRIMARY KEY (`id`) USING BTREE, KEY `product_id` (`product_id`) USING BTREE, KEY `start_time` (`start_time`,`stop_time`) USING BTREE, KEY `is_del` (`is_del`) USING BTREE, KEY `is_hot` (`is_hot`) USING BTREE, KEY `is_show` (`status`) USING BTREE, KEY `add_time` (`add_time`) USING BTREE, KEY `sort` (`sort`) USING BTREE, KEY `is_postage` (`is_postage`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品秒杀商品表'; # Dump of table eb_store_seckill_time # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_seckill_time`; CREATE TABLE `eb_store_seckill_time` ( `seckill_id` int(10) NOT NULL DEFAULT '0' COMMENT '秒杀活动ID', `time_id` int(10) NOT NULL DEFAULT '0' COMMENT '秒杀时间段ID' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='秒杀时段表'; # Dump of table eb_store_service # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_service`; CREATE TABLE `eb_store_service` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '客服id', `uid` int(11) NOT NULL COMMENT '客服uid', `avatar` varchar(250) NOT NULL COMMENT '客服头像', `nickname` varchar(50) NOT NULL COMMENT '代理名称', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '0隐藏1显示', `notify` int(2) DEFAULT '0' COMMENT '订单通知1开启0关闭', `customer` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否展示统计管理', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='客服表'; LOCK TABLES `eb_store_service` WRITE; /*!40000 ALTER TABLE `eb_store_service` DISABLE KEYS */; INSERT INTO `eb_store_service` (`id`, `uid`, `avatar`, `nickname`, `status`, `notify`, `customer`, `create_time`, `update_time`) VALUES (1,166,'http://thirdwx.qlogo.cn/mmopen/niaaWqAobuntFHuBgGOgqwCLhZIBVdPZs3BQbLtEFaialOVxF9wtibdNQibVnicectPsDbasRgqFibhSbHkfRIuq9gRY0YZBlo4uWs/132','天会亮、心会暖',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (2,525,'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJ9AILuib6NlzlcIjkqdU1aH2AQpcXNWHBdh2EtYHxeL1UQBiaRRk8hQXOyCqFFibiaMz5f7vLtFF0d1g/132','Simple present το χρόνο',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (3,559,'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJAVYwQrQO492d68PVxCLnKCgfl5zjU0T4zwaWLgp1EtqfOdE4c0MYzsgyxibDaw4T1G3quocvaO3Q/132','梁文龙',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (4,814,'http://thirdwx.qlogo.cn/mmopen/vi_32/ajNVdqHZLLBLo3ItOx4u1pLoOUBaveA19rAiaD94SoUuCeeD9siaRonv8xputOZD7ialB8qACW9Vas93DU6ogibhag/132','弱冠而立_',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (5,558,'http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eq2xpv9Agsop2tb4k7liazcvELZcTNlSDZ2W6hfDz4ibfgfa2V2b9QiazoJ7w8RiaQ8nK5ECNIFgk5ZfA/132','无懈可击',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (6,815,'http://thirdwx.qlogo.cn/mmopen/vi_32/l9edLj480w1Jh7GkER5Sk6rSJwSL2md1Ja9fGbPkBfM9lWk0xMK9XmcjaiaYjqtHlxcJKon5abPGx1X15Ns0JAg/132','徐斗明',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (7,753,'http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eqYzy0cXb8nAVQdc60FuDHHS0KUNcexJ8LtACialoQIXN3bvKrKCrHdpiakicQes0Pm3y3E7PbC2kqRw/132','梁海涛',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (8,870,'http://thirdwx.qlogo.cn/mmopen/vi_32/icbiao9p9O01EfWhyqQd5Bn2dbSv7HZEemGrf0lZYsvL2teHBrRRxckAjeDyP59mTPulLw0T08EicIdNYf9bMKuwg/132','阿米',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (9,933,'http://thirdwx.qlogo.cn/mmopen/vi_32/bFaldpeHffT2tia9icYTOsRPRsGoltcmiaxicAxS4uT3cKrQlbNQmEh3tqUXDoWljnhp5zKLx90DRrxIvp8uWeE4BA/132','卓林·David',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (10,1033,'http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83epqxaHibsH1ibVTmPibbicXiaZibpBABHA5NHz39MXibDeCn9sEeUCwT3fqlepAOkJA9yiaXM3FOltGB7PHGA/132','army',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (11,994,'https://wx.qlogo.cn/mmhead/j2ic7PR2I0qx0OwtAvY4fxKib5LKNU1HNsxY8mkjGZ7uc/132','梁佳蓉',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (12,1048,'http://thirdwx.qlogo.cn/mmopen/vi_32/vG1nYkRXok1z32vbiahrYB8FT3vuVGu9KTqeR5RnL1ibcvFF9bpK9vj4jT5vXAAT0c4QeErxMYhygd8uQvI0a4Jg/132','捕狐网buhuw.com',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (13,543,'http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eq2xpv9Agsop2tb4k7liazcvELZcTNlSDZ2W6hfDz4ibfgfa2V2b9QiazoJ7w8RiaQ8nK5ECNIFgk5ZfA/132','无懈可击',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (14,66,'http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83er3cdVJ5EJcTUe1e6sN9hW2MTRCdJ2sV85VT0bCl4gibBZ8jAiciarR89ib8RtbtibBrhACvFu03opXicuw/132','A00百信手机连锁',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (15,205,'http://thirdwx.qlogo.cn/mmopen/vi_32/1JFqGmvHZGbxONgIib6wL6GicGtOgtI3rcTjJlE4UmTP9h53eu3uVFhWkWvxhknJMIjcm6F4HEhPrCmPicDseXExQ/132','奔跑的老张',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (16,916,'http://thirdwx.qlogo.cn/mmopen/vi_32/ajNVdqHZLLAeqdF1PbKOCSSlNrN5JFzVK8nYhiaqA8aVqOgVofdPG13zltXZiazuQPXgGC3xmNLfkBDwAtGLq6JA/132','渠雁云',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (17,13,'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTK6l6wdzepRibv8QnzQo1GxFicUAUKgONpic9G4HQdKbLqoSq3XHvfoTUOrASaWTgyG8oql4vOicnfOiaA/132','༄许のོ࿆༘荣耀࿐',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (18,132,'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTI1uoZ1rmLmhseHmGhydrzcGXibrSiaKMa0rLWUgZibonuRX4p2RzSjSXuNwMCgvC9D39rZJUPKAFcfA/132','路人甲45454',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (19,291,'http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83epBYv85e5Xh7CncjNthbrDBPNqljhsEt3OV6aUAxpTcm4QOyTSqBuTialmkmyLwmUHibqrwmkoicQBvQ/132','曲司令',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (20,1945,'https://wx.qlogo.cn/mmopen/vi_32/GsSvP5O8zAIssIXtbg71eax486SkWoic5kibq4bBdDUN4iaD84UwEzMfSEziaMXeoze0TEawnhXicDnEzMpg0QNgZbA/132','客服',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (21,174,'http://thirdwx.qlogo.cn/mmopen/vi_32/ajNVdqHZLLBLo3ItOx4u1pLoOUBaveA19rAiaD94SoUuCeeD9siaRonv8xputOZD7iaPCpLNjuZuIWoVyorqNn7Ng/132','弱冠而立_',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (22,329,'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJcicJmCoRogaOBY1qicIPhAVWVL8fgEcAUCeoUpS8jfCrgD33libuKIvNL0Y0dxyvUicQlibibmJF57FuA/132','小小',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (23,593,'http://thirdwx.qlogo.cn/mmopen/gxvjBgcMzzcRtCtQevwxw2I9v67vXqbMybiacrW3LjSVQd6ClbdBT1WgkgbvDSSRODbOibuvVLMKFBibiaiaYVaL1kz3ULG7sGd55/132','徐斗明',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (24,328,'http://thirdwx.qlogo.cn/mmopen/gxvjBgcMzzcRtCtQevwxw2I9v67vXqbMybiacrW3LjSVQd6ClbdBT1WgkgbvDSSRODbOibuvVLMKFBibiaiaYVaL1kz3ULG7sGd55/132','徐斗明',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (25,4898,'https://wx.qlogo.cn/mmopen/vi_32/iaRYc7s2FJu9zMwZNwWrs1YJ8CibdOUK4leZ33fPTT2Aic3fZ9ObbTbIzFnpOaEvqZJNE0iaUDiaCA0lW7UWEzYI7qw/132','小翔',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (26,4908,'https://wx.qlogo.cn/mmopen/vi_32/DYAIOgq83eqHNDRlR7VTZqXBKeYpdfMiayu3ic4orpicH2x3SHuIrxOMQQRuvpEAUKhs5zWKWc0Xw2JEqpqPoqVkw/132','通',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (27,3344,'https://wx.qlogo.cn/mmopen/vi_32/qxWEIjy9XYf4YMy2yBvEoEug8Ktxxfr2O1iaEKxJOE56YNqJ7icHskJFexTicXcic2AteljKkjfg4w5fv66ZlribCeg/132','怪兽的猫 _',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (28,4965,'http://thirdwx.qlogo.cn/mmopen/Kaf0mJKdNDv3hgwqPFwZgic6XI70W5iaDrMicM9Su4XjWLVica3OQd4vrvAUu860R6Rv6cLAXQFx4zR3T1GZVQz6A6Gtv4ToH6Lu/132','losky',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (29,5444,'http://kaifa.crmeb.net/uploads/attach/2020/04/20200404/74cdf6af9225ad0268676e095b10fc2d.png','团圆222222',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (30,5941,'http://thirdwx.qlogo.cn/mmopen/vi_32/1BnyE23ORFUtuCuibrvvjhWWuAEFZgjUR7cnRbRLDtLWqyU1iaFTg9mqArwGjaVxZ5F0eArKRs9htc3hUP284Xqw/132','富贵汪',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (31,5939,'http://thirdwx.qlogo.cn/mmopen/vi_32/7DL88WEw0QtVQeue2a0lRzagylBrxELyJoa1ymuVKPzTXAaiaL9BHRdvUzNspWuYiba1B5KbKKGiax9usWuDicaftg/132','俞霆',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (32,5938,'https://wx.qlogo.cn/mmopen/vi_32/ajNVdqHZLLB04sg0tM2mLXTJ8Btj5W3YZJHyT5apbBTIuVt7ILku7vYqlm9xbhHHZae6Eyibb0ibJUPxwxqUzEAQ/132','逐风',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (33,5979,'http://thirdwx.qlogo.cn/mmopen/vi_32/TFh3iaIicVD64TlcdxmE8ias0KQH7OSjNAMAtKfOPCgJEuOjxQWGob5GtSLnYsyJvtVWy8WZIibPDxiaDl4Imm0So2g/132','吉',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (34,5965,'http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83erP6lwtTwOXhMWkUqcIUjqIGNMqPKXahqPE73ysibFxlTu45icv20cSSaqOAhc94200EOP2c278icgmA/132','小张小张,遇事不慌',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (35,5937,'http://thirdwx.qlogo.cn/mmopen/vi_32/tia5tWTrfxq3CRISYxFib4mHhChTQ8iar5gffLjHVjENmdMFZPoicMFw3P8FKuEEQcgRib9HTHjD4aF1EGJcalcpz2A/132','A0_世玺图文广告_18530953916',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (36,236,'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLkztP84PukiagqQbsq05k46ibCvD6t3j8j3iccnFlTp79xsy9DxaN5cCNzTWia1JdicIwjgXdPKicI5T9A/132','Sun.ed',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (37,6176,'http://thirdwx.qlogo.cn/mmopen/vi_32/MPcuqiaxBodmoyg4GxsJMU3JcplpOHhfz9V8uOqa5MicGhfkGRXJOFzkAdQAnDKhLQMMUnk8uj54vqNemIcuRqNg/132','昊米',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (38,6182,'http://thirdwx.qlogo.cn/mmopen/vi_32/PRoxTANhxVZbn2N1sAic0lGeA646gsrRbwosO9axHTJNC724ecyuzCQIsXMOOx0ldg4Eia22G99iaibRDdJ5CJ7ndw/132','何忠辉',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (39,6431,'https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTIGva1VbaRlG117DEkk8Hcn5E3AAC7wszxYFCewZDR7SiaicplEK6o2F77QpvibKuibSQndGwyccVdkicg/132','CRMEB客服',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (40,6510,'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJ2mPlJ2jrwzrpgsmvlSDatPuDKEDWKPwQ7TvAhl6NpiaMx6aujvpI9svRu7gmQDrQicYrM9YHYyfzg/132','祥子',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (41,110,'https://wx.qlogo.cn/mmopen/vi_32/DYAIOgq83eqaqKBicedgNV6dsxjgl8UkibOfttmsw3rknriblMSrFhnm1plxvEyGGyYLL4fwXwnHKhW5D4H3GrRuA/132','等风来,随风去',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (42,6540,'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTK17mLkWpia3T9XlribuUh1MOWic1MSXoibB8gHFXIibibjAWqVkXKfKpwRg01QltbwKrKjZyCFITHDibLYw/132','空城',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (43,6066,'http://thirdwx.qlogo.cn/mmopen/vi_32/viaHCExK6kibwGO4QwdxOdwKicrC5InvtmGhjHTNBiaic0mxiah9YOOjdfWLff9fJXFEWsvmvq5nEETURqMO3hykSHHA/132','笑矣乎',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (44,630,'https://wx.qlogo.cn/mmopen/vi_32/ePuiaFTY7DUV2bXj0GFRnIt1ichKXO3KKuylCZKsOyQsyfgB5NGPmLXe4wIm8uKXb8fNyHdexsMSeQQ08WcwibKJg/132','笑而不语。',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (45,1337,'http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTIRn1iaBIQkBqBUFtvIXCT6zZMwnXRbxk1XQ0UKEJqHiaGemAWtmoy6aBpO4DaAqwZS5ibpiaIqRatodQ/132','赵工',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (46,5832,'https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJeRojHxwXibuKLicq7c6letNkRCqxI8no25C3VJIriaU2VibMLlVsib5xNRsggDb5OWcqpEEoRxNArIpw/132','刘松林',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'), (47,7072,'http://thirdwx.qlogo.cn/mmopen/vi_32/P1SaKM9ch3blQyJuesFiaYtuEl7ib3kIEjeCv0puXnFGcLsjYHXIicoax1gic61G0iawRu1hdMV4mU11hiaMYrasGMjQ/132','losky',1,0,0,'2020-06-10 16:16:32','2020-06-10 16:16:32'); /*!40000 ALTER TABLE `eb_store_service` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_store_service_log # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_store_service_log`; CREATE TABLE `eb_store_service_log` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '客服用户对话记录表ID', `msn` text NOT NULL COMMENT '消息内容', `uid` int(11) NOT NULL COMMENT '发送人uid', `to_uid` int(11) NOT NULL COMMENT '接收人uid', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '发送时间', `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否已读(0:否;1:是;)', `remind` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否提醒过', `msn_type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '消息类型 1=文字 2=表情 3=图片 4=语音', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='客服用户对话记录表'; LOCK TABLES `eb_store_service_log` WRITE; /*!40000 ALTER TABLE `eb_store_service_log` DISABLE KEYS */; INSERT INTO `eb_store_service_log` (`id`, `msn`, `uid`, `to_uid`, `create_time`, `type`, `remind`, `msn_type`, `update_time`) VALUES (1,'1',9624,166,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (2,'1',9624,166,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (3,'1',9624,166,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (4,'1',9624,166,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (5,'1',9624,165,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (6,'1',9624,166,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (7,'1',9624,166,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (8,'1',9624,166,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (9,'1',9624,166,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (10,'v',9624,165,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (11,'1',9624,166,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (12,'4',9624,165,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (13,'123123',9624,166,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (14,'vhj',9624,165,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (15,'111',9624,166,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (16,'123123',9624,166,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (17,'123213',9624,166,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (18,'123213',9624,166,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (19,'1',9624,165,'2020-06-10 16:17:59',1,1,1,'2020-06-10 16:21:09'), (20,'1',9624,166,'2020-06-10 16:17:59',0,1,1,'2020-06-10 16:21:09'), (21,'123',9624,166,'2020-06-10 16:17:59',0,1,1,'2020-06-10 16:21:09'), (22,'1',9624,166,'2020-06-10 16:17:59',0,1,1,'2020-06-10 16:21:09'), (23,'陌陌',9624,166,'2020-06-10 16:17:59',0,1,1,'2020-06-10 16:21:09'), (24,'农业',9624,166,'2020-06-10 16:17:59',0,1,1,'2020-06-10 16:21:09'), (25,'我也想',9624,166,'2020-06-10 16:17:59',0,1,1,'2020-06-10 16:21:09'), (26,'哦哦哦',9624,166,'2020-06-10 16:17:59',0,1,1,'2020-06-10 16:21:09'), (27,'em-smiley',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (28,'em-smiley',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (29,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (30,'你好',9624,166,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (31,'你好',9624,425,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (32,'在吗?',9624,168,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (33,'在呢',9624,425,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (34,'哈哈 速度真快',9624,425,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (35,'不错哦',9624,425,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (36,'优秀',9624,425,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (37,'哈哈',9624,425,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (38,'em-smiley',9624,168,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (39,'em-satisfied',9624,168,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (40,'em-relieved',9624,168,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (41,'你好',9624,173,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (42,'解决了',9624,425,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (43,'粑粑',9624,173,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (44,'在吗?',9624,173,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (45,'OK力量',9624,425,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (46,'em-smiley',9624,173,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (47,'em-blush',9624,173,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (48,'em-satisfied',9624,173,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (49,'em-flushed',9624,173,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (50,'em-flushed',9624,173,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (51,'em-flushed',9624,173,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (52,'em-relieved',9624,425,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (53,'em-relieved',9624,425,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (54,'em-flushed',9624,425,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (55,'那种就家乡话多',9624,166,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (56,'em-alien',9624,166,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (57,'测试',9624,166,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (58,'1',9624,166,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (59,'2',9624,166,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (60,'em-smiley',9624,166,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (61,'em-relieved',9624,166,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (62,'http://kaifa.crmeb.net/uploads/store/comment/20190801/7c66482c00732e44c87af7e29196ddd8.jpeg',9624,166,'2020-06-10 16:17:59',1,0,3,'2020-06-10 16:21:09'), (63,'红的。句,图',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (64,'红顶你',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (65,'Eason 人',9624,166,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (66,'和黑科技红共鸣里里里',9624,166,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (67,'的的',9624,166,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (68,'em-smiley',9624,166,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (69,'em-relaxed',9624,166,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (70,'em-relaxed',9624,166,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (71,'em-smiley',9624,166,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (72,'喝的,哦,哦,在我',9624,166,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (73,'em-relaxed',9624,166,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (74,'http://kaifa.crmeb.net/uploads/store/comment/20190801/ea1ba34d69b83ce1d5e28098816541fa.jpg',9624,166,'2020-06-10 16:17:59',1,0,3,'2020-06-10 16:21:09'), (75,'em-relaxed',9624,166,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (76,'啦饿了',9624,166,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (77,'赶紧婆若即若离平静里突然结束qjpjjpjpjpm哦 repo 设计思路去看看婆婆哦婆婆里噼里啪啦咯噼里啪啦时时刻刻是青山绿水',9624,166,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (78,'在吗',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (79,'http://kaifa.crmeb.net/uploads/store/comment/20190802/d388a1de318fa8549f35112dff426a02.jpeg',9624,166,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (80,'管理急',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (81,'ill里咯攻击力',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (82,'海蛎煎',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (83,'在吗?',9624,425,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (84,'在呢',9624,173,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (85,'干啥',9624,173,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (86,'嗯',9624,425,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (87,'在哪',9624,173,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (88,'的',9624,425,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (89,'怎么回事',9624,173,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (90,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (91,'em-smiley',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (92,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (93,'44',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (94,'em-kissing_closed_eyes',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (95,'1',9624,168,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (96,'em-laughing',9624,168,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (97,'em-blush',9624,168,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (98,'em-smiley',9624,168,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (99,'em-relaxed',9624,168,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (100,'em-relaxed',9624,168,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (101,'em-relaxed',9624,168,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (102,'em-relaxed',9624,168,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (103,'em-blush',9624,168,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (104,'em-kissing_heart',9624,168,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (105,'lkklkjl',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (106,'5555',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (107,'em-blush',9624,204,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (108,'em-laughing',9624,204,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (109,'adfasdf',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (110,'3434',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (111,'2323',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (112,'2323',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (113,'3434',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (114,'wegewrg',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (115,'123123',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (116,'lkkl',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (117,'em-kissing_closed_eyes',9624,204,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (118,',m,m',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (119,'em-laughing',9624,204,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (120,'em-laughing',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (121,'em-laughing',9624,204,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (122,'855',9624,168,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (123,'lklk',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (124,'2323',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (125,'2323',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (126,'454545',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (127,'323asdas',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (128,'2',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (129,'34',9624,168,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (130,'23',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (131,'23\'',9624,168,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (132,'3434',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (133,'3434',9624,168,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (134,'3434',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (135,'3434',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (136,'12341234',9624,168,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (137,'231411234',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (138,'qwerqwer',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (139,'12341234',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (140,'343434',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (141,'qwerr',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (142,'1',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (143,'1',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (144,'2',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (145,'4',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (146,'123',9624,168,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (147,'你好',9624,425,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (148,'234234',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (149,'344',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (150,'3434',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (151,'2323',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (152,'23232',9624,168,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (153,'3434',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (154,'kjhkj',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (155,'1231231',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (156,'2332',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (157,'12123123123',9624,204,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (158,'232323',9624,204,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (159,'111',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (160,'11',9624,168,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (161,'收到请回复',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (162,'收到',9624,425,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (163,'em-smile',9624,425,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (164,'http://kaifa.crmeb.net/uploads/store/comment/20190806/43c2b9a9c96729ce73875f58a878fef6.png',9624,425,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (165,'在吗',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (166,'嗨',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (167,'em-smile',9624,425,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (168,'em-relaxed',9624,425,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (169,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (170,'你好',9624,455,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (171,'em-blush',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (172,'下午好',9624,492,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (173,'em-smile',9624,491,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (174,'在',9624,455,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (175,'1',9624,425,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (176,'em-smile',9624,425,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (177,'成功',9624,168,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (178,'你好',9624,425,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (179,'在不',9624,425,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (180,'在呢',9624,504,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (181,'你好',9624,425,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (182,'em-smiley',9624,504,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (183,'http://kaifa.crmeb.net/uploads/store/comment/20190807/68ae74deaa577114653c5d98e9765629.jpeg',9624,425,'2020-06-10 16:17:59',1,0,3,'2020-06-10 16:21:09'), (184,'em-relaxed',9624,504,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (185,'em-laughing',9624,504,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (186,'http://kaifa.crmeb.net/uploads/store/comment/20190807/455a99f8578c7ad694564e1b63c185d6.jpeg',9624,504,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (187,'http://kaifa.crmeb.net/uploads/store/comment/20190808/7d23242e4964754eca55e8736f3d8eb1.png',9624,166,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (188,'客服测试',9624,425,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (189,'em-smiley',9624,425,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (190,'em-laughing',9624,425,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (191,'em-laughing',9624,425,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (192,'nxnnx',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (193,'em-grin',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (194,'em-kissing_closed_eyes',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (195,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (196,'crmeb',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (197,'mm',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (198,'em-grin',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (199,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (200,'em-smile',9624,425,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (201,'em-smiley',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (202,'http://kaifa.crmeb.net/uploads/store/comment/20190808/b34c9cddc56b8bc7e22334485a2655c8.png',9624,166,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (203,'em-smile',9624,625,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (204,'1',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (205,'em-grin',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (206,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (207,'em-relieved',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (208,'em-grinning',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (209,'em-stuck_out_tongue',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (210,'em-stuck_out_tongue',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (211,'em-relieved',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (212,'em-relieved',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (213,'em-relieved',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (214,'em-heart_eyes',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (215,'em-grin',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (216,'em-satisfied',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (217,'难道你的卡',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (218,'没有',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (219,'短信',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (220,'em-laughing',9624,425,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (221,'你好',9624,525,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (222,'em-blush',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (223,'123123',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (224,'em-blush',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (225,'http://kaifa.crmeb.net/uploads/store/comment/20190810/84f473add2215e083f55ece765cd8401.gif',9624,166,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (226,'2222',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (227,'111',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (228,'121212',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (229,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (230,'em-smile',9624,543,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (231,'你好',9624,587,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (232,'在呢',9624,815,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (233,'你好呀',9624,587,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (234,'你好',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (235,'em-grinning',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (236,'em-grinning',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (237,'em-relieved',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (238,'em-flushed',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (239,'em-smiley',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (240,'em-grinning',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (241,'你好',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (242,'http://kaifa.crmeb.net/uploads/store/comment/20190810/79937339d66b6ba5b5474fd6bb71990f.jpg',9624,814,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (243,'em-blush',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (244,'em-relieved',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (245,'http://kaifa.crmeb.net/uploads/store/comment/20190810/c2d3ff995f949200d28b3d89d1672cb6.png',9624,166,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (246,'恶化',9624,558,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (247,'估计里里劳斯莱斯',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (248,'红红红里固体',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (249,'w',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (250,'巧克力名老师',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (251,'黑胡椒',9624,168,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (252,'&nbsp;黑寡妇防城港',9624,558,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (253,'共鸣帝纪估计里里',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (254,'交付给&nbsp;',9624,558,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (255,'热的',9624,168,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (256,'令你回来',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (257,'你好',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (258,'em-satisfied',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (259,'em-satisfied',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (260,'em-kissing_smiling_eyes',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (261,'搞活经济',9624,168,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (262,'d y hv c',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (263,'d t g v c f gf h j b f g f h g',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (264,'em-flushed',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (265,'em-kissing_closed_eyes',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (266,'em-kissing_closed_eyes',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (267,'em-flushed',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (268,'em-flushed',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (269,'em-flushed',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (270,'em-flushed',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (271,'em-flushed',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (272,'em-flushed',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (273,'em-kissing_heart',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (274,'em-kissing_closed_eyes',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (275,'em-flushed',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (276,'em-blush',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (277,'em-flushed',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (278,'你是猪吗',9624,168,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (279,'http://kaifa.crmeb.net/uploads/store/comment/20190810/6d90f7b30563731f9f079d635584c138.png',9624,676,'2020-06-10 16:17:59',1,0,3,'2020-06-10 16:21:09'), (280,'em-smile',9624,607,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (281,'法国 v 好',9624,607,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (282,'em-kissing_closed_eyes',9624,558,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (283,'em-relieved',9624,558,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (284,'http://kaifa.crmeb.net/uploads/store/comment/20190810/0a3ae3954797617a0775a057d86fc593.jpg',9624,815,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (285,'em-grin',9624,815,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (286,'你好',9624,815,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (287,'你好',9624,814,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (288,'OK cut',9624,815,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (289,'em-relaxed',9624,814,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (290,'em-laughing',9624,814,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (291,'em-satisfied',9624,814,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (292,'em-satisfied',9624,814,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (293,'em-relieved',9624,814,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (294,'em-relieved',9624,814,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (295,'em-relieved',9624,814,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (296,'em-relieved',9624,814,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (297,'http://kaifa.crmeb.net/uploads/store/comment/20190810/e2403ab6803f2cae0f9546e0ca85812a.jpg',9624,815,'2020-06-10 16:17:59',1,0,3,'2020-06-10 16:21:09'), (298,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (299,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (300,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (301,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (302,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (303,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (304,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (305,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (306,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (307,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (308,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (309,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (310,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (311,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (312,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (313,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (314,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (315,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (316,'em-smiley',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (317,'em-blush',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (318,'em-smiley',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (319,'em-smile',9624,558,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (320,'em-smile',9624,558,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (321,'哈哈',9624,558,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (322,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (323,'你好!',9624,933,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (324,'在吗',9624,933,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (325,'得',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (326,'你好',9624,815,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (327,'jjjkkk',9624,168,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (328,'北包包',9624,815,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (329,'em-smirk',9624,815,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (330,'sa',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (331,'hi',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (332,'ceshi',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (333,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (334,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (335,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (336,'em-flushed',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (337,'2',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (338,'nihao&nbsp;',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (339,'广东发货',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (340,'Crmeb牛逼',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (341,'em-blush',9624,525,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (342,'em-blush',9624,525,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (343,'em-smile',9624,1048,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (344,'em-smile',9624,994,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (345,'em-blush',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (346,'http://kaifa.crmeb.net/uploads/store/comment/20190817/c959ae748c11a90986cd510e3de81f05.jpg',9624,814,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (347,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (348,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (349,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (350,'em-blush',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (351,'em-kissing_heart',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (352,'em-stuck_out_tongue_closed_eyes',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (353,'em-flushed',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (354,'em-blush',9624,558,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (355,'em-satisfied',9624,558,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (356,'哈喽',9624,558,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (357,'??',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (358,'em-smiley',9624,587,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (359,'测试',9624,543,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (360,'测试2',9624,558,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (361,'得了',9624,543,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (362,'禹',9624,558,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (363,'1111',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (364,'222',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (365,'你好',9624,587,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (366,'你好',9624,587,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (367,'在吗',9624,587,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (368,'你好',9624,587,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (369,'在呢',9624,815,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (370,'em-blush',9624,587,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (371,'什么事?',9624,815,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (372,'http://kaifa.crmeb.net/uploads/store/comment/20190823/aeb5081e79d643fa8acb713932c2e6e7.jpeg',9624,587,'2020-06-10 16:17:59',1,0,3,'2020-06-10 16:21:09'), (373,'好吧',9624,815,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (374,'em-smiley',9624,815,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (375,'em-relaxed',9624,815,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (376,'怎么样',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (377,'你好',9624,994,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (378,'不好意思我在测试 看到请回复',9624,994,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (379,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (380,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (381,'哈哈',9624,933,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (382,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (383,'客服是微信的吗',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (384,'测试',9624,543,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (385,'牛比',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (386,'em-kissing_closed_eyes',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (387,'em-kissing_closed_eyes',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (388,'em-satisfied',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (389,'em-kissing_closed_eyes',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (390,'em-satisfied',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (391,'em-flushed',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (392,'em-grin',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (393,'em-relieved',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (394,'em-relieved',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (395,'em-flushed',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (396,'em-blush',9624,994,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (397,'em-kissing_closed_eyes',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (398,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (399,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (400,'位',9624,543,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (401,'http://kaifa.crmeb.net/uploads/store/comment/20190824/89db2efc2eead7219f8353b484d1b9f2.jpg',9624,543,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (402,'em-smile',9624,543,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (403,'em-smile',9624,543,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (404,'wx1566728131192396古古怪怪32m',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (405,'http://kaifa.crmeb.net/uploads/store/comment/20190825/71e7f42064348d4efd97bf0061635ef7.PNG',9624,559,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (406,'哦',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (407,'你好',9624,168,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (408,'无钱无权',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (409,'em-blush',9624,587,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (410,'em-blush',9624,587,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (411,'哈哈哈哈',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (412,'em-smile',9624,1048,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (413,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (414,'em-flushed',9624,587,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (415,'em-grin',9624,587,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (416,'em-grin',9624,587,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (417,'em-satisfied',9624,587,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (418,'em-relieved',9624,587,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (419,'em-blush',9624,815,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (420,'http://kaifa.crmeb.net/uploads/store/comment/20190826/3e911a716f2742808784834629c7487f.png',9624,525,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (421,'你好',9624,66,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (422,'em-kissing_closed_eyes',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (423,'em-sleeping',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (424,'em-grinning',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (425,'em-grin',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (426,'em-satisfied',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (427,'em-smirk',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (428,'em-wink',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (429,'em-sweat_smile',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (430,'em-sweat',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (431,'em-open_mouth',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (432,'em-anguished',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (433,'em-alien',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (434,'em-sunglasses',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (435,'http://kaifa.crmeb.net/uploads/store/comment/20190827/4b7a72228750c71461b001d8efaa6c93.jpg',9624,559,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (436,'em-smiley',9624,558,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (437,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (438,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (439,'hi',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (440,'d kcg ?',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (441,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (442,'1',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (443,'em-smile',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (444,'em-laughing',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (445,'em-smile',9624,994,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (446,'em-smile',9624,994,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (447,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (448,'在吗?',9624,994,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (449,'网站联系,可以收到信息吗?',9624,558,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (450,'谢谢',9624,994,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (451,'em-smiley',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (452,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (453,'1',9624,870,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (454,'你好',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (455,'有回答吗',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (456,'能看到吗',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (457,'红米',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (458,'em-kissing_closed_eyes',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (459,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (460,'到咨询',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (461,'顶焦度计',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (462,'23',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (463,'3434',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (464,'2323',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (465,'em-grinning',9624,558,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (466,'em-blush',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (467,'em-blush',9624,66,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (468,'你好',9624,815,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (469,'你好',9624,994,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (470,'厉害',9624,168,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (471,'http://kaifa.crmeb.net/uploads/store/comment/20190904/e7520e4ce635d4af839e8442ef8d15f4.png',9624,168,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (472,'http://kaifa.crmeb.net/uploads/store/comment/20190904/072f983c79bac8891e7f479b79c34d6d.png',9624,814,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (473,'你好',9624,205,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (474,'1',9624,525,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (475,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (476,'em-grin',9624,291,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (477,'em-smirk',9624,291,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (478,'em-smirk',9624,291,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (479,'em-grin',9624,1048,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (480,'em-grin',9624,1048,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (481,'http://kaifa.crmeb.net/uploads/store/comment/20190906/fb6e13ac10bd13d00b13454378d16668.jpg',9624,168,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (482,'哦哦哦',9624,168,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (483,'哦哦哦',9624,168,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (484,'哦哦',9624,168,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (485,'em-smirk',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (486,'em-smirk',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (487,'em-smirk',9624,168,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (488,'em-stuck_out_tongue_closed_eyes',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (489,'em-stuck_out_tongue_closed_eyes',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (490,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (491,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (492,'客服',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (493,'你好',9624,558,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (494,'你好',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (495,'em-blush',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (496,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (497,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (498,'在吗(⊙o⊙)!',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (499,'???',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (500,'在吗',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (501,'123',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (502,'&lt;img src=x&gt;',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (503,'http://kaifa.crmeb.net/uploads/store/comment/20190909/a1ad6b4b21b5f39449c12b5dc0c35d1c.png',9624,558,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (504,'http://kaifa.crmeb.net/uploads/store/comment/20190909/137267407490c5dc41dee1d01c8250d2.png',9624,558,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (505,'em-kissing_closed_eyes',9624,815,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (506,'em-flushed',9624,815,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (507,'em-flushed',9624,815,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (508,'em-satisfied',9624,815,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (509,'em-satisfied',9624,815,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (510,'em-satisfied',9624,815,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (511,'em-satisfied',9624,815,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (512,'em-smile',9624,291,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (513,'em-relieved',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (514,'em-grinning',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (515,'em-blush',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (516,'xx',9624,558,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (517,'测试',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (518,'ASD',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (519,'你好( ^_^)/',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (520,'em-unamused',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (521,'em-unamused',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (522,'em-unamused',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (523,'http://kaifa.crmeb.net/uploads/store/comment/20190913/3c7924f0d518c1a3d133ac5d4ce26aa7.jpg',9624,559,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (524,'测试用',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (525,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (526,'hello',9624,870,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (527,'ni',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (528,'http://kaifa.crmeb.net/uploads/store/comment/20190914/8a1d03f0215d27b6dfd3765505f3c13f.jpg',9624,814,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (529,'hao',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (530,'hbgg',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (531,'em-grin',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (532,'em-smiley',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (533,'http://kaifa.crmeb.net/uploads/store/comment/20190916/339f07c0cc1c6eeabb640ca1cb2aa415.jpg',9624,166,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (534,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (535,'em-blush',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (536,'em-alien',9624,13,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (537,'发了一个啥',9624,1677,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (538,'em-smiley',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (539,'em-relaxed',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (540,'哈哈',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (541,'?',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (542,'http://kaifa.crmeb.net/uploads/store/comment/20190918/030eadfb4e352d2c3bb470e591cebd25.jpg',9624,166,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (543,'em-blush',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (544,'em-blush',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (545,'em-blush',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (546,'哈哈哈',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (547,'em-smile',9624,525,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (548,'1111',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (549,'在吗',9624,205,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (550,'老师',9624,205,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (551,'你好',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (552,'123',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (553,'em-smirk',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (554,'em-heart_eyes',9624,559,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (555,'em-grinning',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (556,'啊啊啊',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (557,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (558,'在吗',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (559,'http://kaifa.crmeb.net/uploads/store/comment/20190922/cbe7c815d8d66b373a4accc101915195.png',9624,166,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (560,'仔仔',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (561,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (562,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (563,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (564,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (565,'em-smiley',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (566,'em-smiley',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (567,'em-relaxed',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (568,'em-relaxed',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (569,'em-smirk',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (570,'em-smirk',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (571,'em-smirk',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (572,'em-smirk',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (573,'http://kaifa.crmeb.net/uploads/store/comment/20190922/6384a42bf9ca9bbe0c0089d6fe667b03.png',9624,166,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (574,'em-blush',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (575,'em-laughing',9624,815,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (576,'哦哦',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (577,'小仙女',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (578,'测试',9624,110,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (579,'测试测试',9624,110,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (580,'测试',9624,110,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (581,'Test',9624,525,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (582,'Good&nbsp;',9624,525,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (583,'Bbt',9624,525,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (584,'尖叫鸡',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (585,'em-smiley',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (586,'em-smiley',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (587,'测试',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (588,'http://kaifa.crmeb.net/uploads/store/comment/20190923/a77a297d87f97e1f1c2cfebfaa432d29.png',9624,166,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (589,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (590,'就好',9624,13,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (591,'em-smile',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (592,'哈哈',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (593,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (594,'em-blush',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (595,'em-relaxed',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (596,'llll',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (597,'l',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (598,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (599,'2',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (600,'3',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (601,'4',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (602,'5',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (603,'6',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (604,'7',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (605,'8',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (606,'9',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (607,'0',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (608,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (609,'2',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (610,'3',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (611,'4',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (612,'5',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (613,'6',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (614,'7',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (615,'8',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (616,'9',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (617,'0',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (618,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (619,'3',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (620,'4',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (621,'5',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (622,'6',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (623,'7',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (624,'8',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (625,'9',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (626,'0',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (627,'-',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (628,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (629,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (630,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (631,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (632,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (633,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (634,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (635,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (636,'http://kaifa.crmeb.net/uploads/store/comment/20190925/4eab9e9e6caaf768dc21ef1e041e5d84.jpeg',9624,166,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (637,'o',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (638,'em-relaxed',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (639,'em-relaxed',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (640,'em-relaxed',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (641,'哈哈',9624,815,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (642,'哈哈',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (643,'你号',9624,543,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (644,'哈哈哈',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (645,'http://kaifa.crmeb.net/uploads/store/comment/20190929/efd70af68422dc44ff89854517b9def9.jpg',9624,166,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (646,'你好',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (647,'你好',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (648,'你好',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (649,'你好',9624,13,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (650,'在',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (651,'你好',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (652,'在吗?',9624,13,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (653,'em-blush',9624,13,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (654,'可以收到我信息吗?我的怎么不行呢,vmehi.com',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (655,'http://kaifa.crmeb.net/uploads/store/comment/20190929/cb2e90df810d64996a7fbc8942b6c71e.jpeg',9624,166,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (656,'可以收到我信息吗?我的怎么不行呢,mehi.com',9624,291,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (657,'可以收到我信息吗?我的怎么不行呢,vmehi.com',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (658,'可以收到我信息吗?我的怎么不行呢,vmehi.com',9624,13,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (659,'可以收到我信息吗?我的怎么不行呢,vmehi.com',9624,916,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (660,'可以收到我信息吗?我的怎么不行呢,vmehi.com',9624,205,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (661,'可以收到我信息吗?我的怎么不行呢,vmehi.com',9624,66,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (662,'可以收到我信息吗?我的怎么不行呢,vmehi.com',9624,543,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (663,'可以收到我信息吗?我的怎么不行呢,vmehi.com',9624,1048,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (664,'可以收到我信息吗?我的怎么不行呢,vmehi.com',9624,994,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (665,'可以收到我信息吗?我的怎么不行呢,vmehi.com',9624,1033,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (666,'可以收到我信息吗?我的怎么不行呢,vmehi.com',9624,933,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (667,'可以收到我信息吗?我的怎么不行呢,vmehi.com',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (668,'你好 测试客服',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (669,'em-smiley',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (670,'111',9624,291,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (671,'你好',9624,66,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (672,'em-smile',9624,558,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (673,'测试',9624,815,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (674,'http://kaifa.crmeb.net/uploads/store/comment/20190929/e984dd494f705fa5374097a2996ef7e4.png',9624,815,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (675,'1',9624,1033,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (676,'你好',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (677,'4654654',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (678,'4654654656',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (679,'em-blush',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (680,'em-flushed',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (681,'em-relieved',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (682,'em-smiley',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (683,'em-relaxed',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (684,'em-satisfied',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (685,'em-grin',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (686,'em-smirk',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (687,'em-heart_eyes',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (688,'em-wink',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (689,'em-stuck_out_tongue',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (690,'em-kissing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (691,'em-grinning',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (692,'em-flushed',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (693,'em-flushed',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (694,'em-kissing_closed_eyes',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (695,'em-sleeping',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (696,'em-hushed',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (697,'em-expressionless',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (698,'em-worried',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (699,'em-frowning',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (700,'em-unamused',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (701,'em-sweat_smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (702,'em-anguished',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (703,'em-open_mouth',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (704,'em-sweat',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (705,'em-disappointed_relieved',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (706,'em-grimacing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (707,'em-confused',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (708,'em-weary',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (709,'em-persevere',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (710,'em-persevere',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (711,'em-fearful',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (712,'em-imp',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (713,'em-smiling_imp',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (714,'em-neutral_face',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (715,'em-no_mouth',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (716,'em-innocent',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (717,'em-alien',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (718,'5644655555555555555',9624,525,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (719,'你好',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (720,'em-blush',9624,558,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (721,'em-blush',9624,558,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (722,'你好',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (723,'1212',9624,543,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (724,'222',9624,916,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (725,'测试',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (726,'99',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (727,'http://kaifa.crmeb.net/uploads/store/comment/20191005/87851ae3a46e39d6aed272451d605c32.png',9624,814,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (728,'em-kissing_closed_eyes',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (729,'你好',9624,291,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (730,'早',9624,525,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (731,'?',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (732,'hi',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (733,'em-grinning',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (734,'em-grinning',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (735,'em-grinning',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (736,'em-grin',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (737,'em-grin',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (738,'em-sweat',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (739,'em-sweat',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (740,'em-sweat',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (741,'em-sweat',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (742,'em-sunglasses',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (743,'em-sunglasses',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (744,'em-sunglasses',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (745,'em-kissing_closed_eyes',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (746,'em-kissing_closed_eyes',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (747,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (748,'em-smiley',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (749,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (750,'hehe',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (751,'&nbsp;在',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (752,'为啥这么便宜',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (753,'1',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (754,'em-relieved',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (755,'em-relieved',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (756,'em-blush',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (757,'1',9624,13,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (758,'CCTV',9624,916,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (759,'哈哈',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (760,'在吗',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (761,'有人吗',9624,525,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (762,'谁在',9624,110,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (763,'你好',9624,543,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (764,'你好',9624,1945,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (765,'你好',9624,1945,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (766,'你好呀',9624,1945,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (767,'asd&nbsp;',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (768,'&nbsp; &nbsp; &nbsp;',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (769,'q',9624,558,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (770,'wx157103829465011589',9624,559,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (771,'test',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (772,'明年',9624,558,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (773,'http://kaifa.crmeb.net/uploads/store/comment/20191015/ca9390040aa101104cbc39856c2e045f.jpg',9624,132,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (774,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (775,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (776,'1',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (777,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (778,'Hi',9624,815,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (779,'1',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (780,'你好',9624,110,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (781,'你好啊',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (782,'你好',9624,558,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (783,'Hi',9624,933,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (784,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (785,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (786,'你好 测试',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (787,'你好呀,我测试下',9624,291,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (788,'cyuui',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (789,'你好',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (790,'Nihao',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (791,'你好',9624,1945,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (792,'那个华为手机100元是真的吗',9624,1945,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (793,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (794,'test',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (795,'sdfsdf',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (796,'是吗',9624,1945,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (797,'em-smiley',9624,1945,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (798,'http://kaifa.crmeb.net/uploads/store/comment/20191022/637bc21df0f83b5154c6b8561341c544.jpeg',9624,1945,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (799,'你好',9624,933,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (800,'em-blush',9624,525,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (801,'在吗',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (802,'你们这个是网站还是商户啊',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (803,'怎么适配',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (804,'ceshi',9624,291,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (805,'em-laughing',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (806,'em-laughing',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (807,'em-laughing',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (808,'em-laughing',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (809,'em-blush',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (810,'em-kissing',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (811,'em-fearful',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (812,'em-fearful',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (813,'em-anguished',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (814,'em-anguished',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (815,'em-anguished',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (816,'em-anguished',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (817,'em-anguished',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (818,'',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (819,'.',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (820,'测试',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (821,'em-laughing',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (822,'em-smirk',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (823,'在吗?',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (824,'你好',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (825,'em-smile',9624,13,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (826,'em-smile',9624,13,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (827,'收到',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (828,'em-laughing',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (829,'em-laughing',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (830,'em-satisfied',9624,814,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (831,'你在哪里回复的',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (832,'客户咨询',9624,814,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (833,'你在哪里回复的',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (834,'在',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (835,'em-smile',9624,166,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (836,'hello?',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (837,'你好',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (838,'em-laughing',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (839,'em-blush',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (840,'你好你好美女可以',9624,870,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (841,'你好',9624,870,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (842,'测试',9624,870,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (843,'测试发送',9624,870,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (844,'你好',9624,329,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (845,'你好',9624,1945,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (846,'em-smiley',9624,1945,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (847,'在',9624,166,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (848,'你好',9624,593,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (849,'久',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (850,'你好',9624,13,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (851,'聊天测试',9624,328,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (852,'em-laughing',9624,174,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (853,'em-laughing',9624,174,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (854,'你好',9624,13,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (855,'你好',9624,13,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (856,'你好',9624,13,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (857,'哈林',9624,13,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (858,'你好',9624,13,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (859,'你好好',9624,13,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (860,'测试',9624,174,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (861,'back 了',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (862,'回来后立即',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (863,'OK了l l l默默',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (864,'默默',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (865,'我哦哦哦哦哦',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (866,'哦哦哦哦哦www',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (867,'嘎村',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (868,',call OK了',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (869,'车啊啦啦',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (870,'啊啊啊举行',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (871,'back 了',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (872,'啊咯哦',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (873,'www',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (874,'哦www',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (875,'发挥更符合',9624,329,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (876,'测试',9624,329,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (877,'测试',9624,329,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (878,'测试',9624,329,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (879,'家里gjdlatjm',9624,132,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (880,'wx157320822531865315',9624,174,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (881,'wx15732082253186531',9624,174,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (882,'哦哦哦',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (883,'www',9624,110,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (884,'www',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (885,'等风来',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (886,'www<div><br></div><div>等风来,随风去</div><div>哦www</div>',9624,110,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (887,'1',9624,13,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (888,'em-kissing_closed_eyes',9624,1945,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (889,'s',9624,1945,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (890,'1',9624,329,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (891,'在吗',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (892,'em-grin',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (893,'em-grin',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (894,'.',9624,1945,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (895,'没有看到分销的功能',9624,1945,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (896,'。',9624,13,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (897,'em-smile',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (898,'???',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (899,'111111',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (900,'em-blush',9624,593,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (901,'1',9624,110,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (902,'测试',9624,110,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (903,'3',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (904,'啦啦',9624,110,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (905,'em-smile',9624,110,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (906,'em-sweat',9624,110,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (907,'em-smirk',9624,4932,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (908,'em-smirk',9624,4932,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (909,'em-smirk',9624,4932,'2020-06-10 16:17:59',1,0,2,'2020-06-10 16:21:09'), (910,'怎么发送商品信息',9624,110,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (911,'11',9624,110,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (912,'给你发给你发的大幅度地方v大V算得上是大城市的城市的车位收费',9624,110,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (913,'托管人突然提高人体好人挺好的粉色粉色发慰问费',9624,110,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (914,'3',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (915,'3',9624,3344,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (916,'7',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (917,'26',9624,1945,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (918,'wx157915510232582272',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (919,'wx157915510232582272',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (920,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (921,'26',9624,1945,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (922,'wx158165020568477987',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (923,'wx158165020568477987',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (924,'26',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (925,'wx158165020568477987',9624,329,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (926,'wx158165020568477987',9624,110,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (927,'11',9624,110,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (928,'wx157370319204454824',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (929,'wx157370319204454824',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (930,'wx157370319204454824',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (931,'wx157370319204454824',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (932,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (933,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (934,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (935,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (936,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (937,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (938,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (939,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (940,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (941,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (942,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (943,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (944,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (945,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (946,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (947,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (948,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (949,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (950,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (951,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (952,'wx157370319204454824',9624,593,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (953,'wx157370319204454824',9624,593,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (954,'wx157370319204454824',9624,593,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (955,'wx157370319204454824',9624,593,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (956,'wx157370319204454824',9624,593,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (957,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (958,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (959,'wx157370319204454824',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (960,'38',9624,3344,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (961,'38',9624,3344,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (962,'38',9624,3344,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (963,'em-relaxed',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (964,'http://kaifa.crmeb.net/uploads/store/comment/20200218/e9c14e4d5193c85586e486a5abb2d8bf.png',9624,132,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (965,'3',9624,1945,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (966,'3',9624,593,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (967,'3',9624,593,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (968,'3',9624,593,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (969,'3',9624,593,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (970,'3',9624,593,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (971,'3',9624,593,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (972,'3',9624,593,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (973,'3',9624,593,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (974,'3',9624,593,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (975,'3',9624,593,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (976,'3',9624,593,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (977,'3',9624,593,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (978,'3',9624,593,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (979,'3',9624,593,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (980,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (981,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (982,'3',9624,4898,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (983,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (984,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (985,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (986,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (987,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (988,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (989,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (990,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (991,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (992,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (993,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (994,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (995,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (996,'wx158166196345311922',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (997,'7',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (998,'7',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (999,'7',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1000,'7',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1001,'3',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1002,'3',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1003,'3',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1004,'3',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1005,'3',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1006,'wx157715580479888033',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1007,'wx157715580479888033',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1008,'你好',9624,1945,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1009,'11',9624,174,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1010,'3',9624,1945,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1011,'你好',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1012,'伊利奶为什么是双鞋',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1013,'可以发送客服聊天上面的产品推送不',9624,5444,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1014,'wx158272309985687980',9624,110,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1015,'.',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1016,'哈哈',9624,593,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1017,'1',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1018,'2',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1019,'2',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1020,'33',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1021,'333',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1022,'11',9624,1945,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1023,'11',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1024,'wx158279729432311086',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1025,'啊啊啊啊啊啊',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1026,'11',9624,3344,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1027,'10',9624,753,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1028,'10',9624,4898,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1029,'wx158278367445821474',9624,328,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1030,'11',9624,329,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1031,'wx158278367445821474',9624,3344,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1032,'3',9624,3344,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1033,'wx158201938117973109',9624,110,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1034,'下',9624,174,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1035,'wx158356486987468089',9624,174,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1036,'wx158356486987468089',9624,174,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1037,'em-flushed',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1038,'http://kaifa.crmeb.net/uploads/store/comment/20200309/c79b246a9697b52beca88b2ef66ca77c.png',9624,753,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (1039,'波动',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1040,'积极提',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1041,'你好',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1042,'哈哈',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1043,'哈哈哈哈',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1044,'em-flushed',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1045,'123',9624,1945,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1046,'10',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1047,'em-blush',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1048,'3',9624,4908,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1049,'111',9624,328,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1050,'em-blush',9624,4908,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1051,'46',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1052,'这个功能好,可以发产品链接了',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1053,'em-laughing',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1054,'2111',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1055,'73',9624,753,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1056,'hi',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1057,'有点卡',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1058,'。',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1059,'em-laughing',9624,329,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1060,'wx158469817736532166',9624,753,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1061,'em-blush',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1062,'http://kaifa.crmeb.net/uploads/store/comment/20200320/90d8830a733705ade8262c04637e550f.png',9624,753,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (1063,'wx158470182330427661',9624,110,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1064,'直播在哪里看了',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1065,'77',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1066,'em-kissing_closed_eyes',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1067,'em-kissing_closed_eyes',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1068,'em-kissing_closed_eyes',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1069,'em-kissing_closed_eyes',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1070,'em-kissing_closed_eyes',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1071,'em-laughing',9624,174,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1072,'em-laughing',9624,329,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1073,'wx158512082886773412',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1074,'em-grin',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1075,'em-grin',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1076,'em-grin',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1077,'em-smirk',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1078,'em-smirk',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1079,'61',9624,4875,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1080,'wx158519291965420846',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1081,'发货',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1082,'http://kaifa.crmeb.net/uploads/store/comment/20200326/00ebbf659109f8ba9bce605dbb46c319.jpg',9624,132,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (1083,'em-smiley',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1084,'em-smiley',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1085,'em-smiley',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1086,'八点半点半',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1087,'wx158519285698121826',9624,1945,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1088,'八点半不行不行',9624,1945,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1089,'100',9624,174,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1090,'em-kissing_smiling_eyes',9624,174,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1091,'哔哩哔哩',9624,6431,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1092,'http://kaifa.crmeb.net/admin/Index/index.html',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1093,'http://kaifa.crmeb.net/admin/Index/index.html',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1094,'方法',9624,132,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'), (1095,'更丰富',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1096,'http://kaifa.crmeb.net/admin/Index/index.html',9624,4875,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1097,'发一个',9624,4875,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1098,'http://kaifa.crmeb.net/admin/Index/index.html',9624,4875,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1099,'阿里了',9624,4875,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1100,'61',9624,1945,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1101,'61',9624,110,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1102,'wx158512082886773412',9624,4875,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1103,'78',9624,4875,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1104,'79',9624,6517,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1105,'62',9624,4965,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1106,'你',9624,4965,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1107,'em-kissing_closed_eyes',9624,3344,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1108,'em-smiley',9624,3344,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1109,'em-smiley',9624,3344,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1110,'em-smiley',9624,3344,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1111,'108',9624,3344,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1112,'em-blush',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1113,'58',9624,4965,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1114,'67',9624,3344,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1115,'11',9624,3344,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1116,'78',9624,4965,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1117,'78',9624,3344,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1118,'哦哦哦',9624,174,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1119,'108',9624,132,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1120,'108',9624,4875,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1121,'78',9624,6517,'2020-06-10 16:17:59',0,0,5,'2020-06-10 16:21:09'), (1122,'你',9624,4875,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1123,'我',9624,6517,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1124,'wx158563430978350798',9624,13,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1125,'在吗',9624,13,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1126,'wx158563430978350798',9624,6431,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1127,'wx158563430978350798',9624,6066,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1128,'wx158563430978350798',9624,110,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1129,'wx158563430978350798',9624,110,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1130,'wx158575648793333542',9624,753,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1131,'wx158579784434339961',9624,132,'2020-06-10 16:17:59',0,0,6,'2020-06-10 16:21:09'), (1132,'11',9624,4898,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1133,'em-worried',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1134,'11',9624,4875,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1135,'11',9624,6517,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1136,'2222',9624,6517,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1137,'122',9624,6517,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1138,'222',9624,4965,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1139,'11',9624,4965,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1140,'1',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1141,'2',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1142,'法赫德',9624,328,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1143,'em-flushed',9624,328,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1144,'em-flushed',9624,328,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1145,'em-flushed',9624,328,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1146,'em-flushed',9624,328,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1147,'阿拉',9624,4875,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1148,'666',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1149,'em-smile',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1150,'em-grin',9624,132,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1151,'瓜皮',9624,630,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1152,'123',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1153,'222',9624,6517,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1154,'12313',9624,4898,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1155,'em-smile',9624,4898,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1156,'em-blush',9624,4898,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1157,'em-blush',9624,4898,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1158,'em-blush',9624,4898,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1159,'em-blush',9624,4898,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1160,'em-blush',9624,4898,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1161,'em-blush',9624,4898,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1162,'http://cremb.oss-cn-beijing.aliyuncs.com/c492c202005101204506389.png',9624,110,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (1163,'http://cremb.oss-cn-beijing.aliyuncs.com/f69f9202005101207139895.png',9624,110,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (1164,'http://cremb.oss-cn-beijing.aliyuncs.com/dcf57202005110955105404.png',9624,110,'2020-06-10 16:17:59',0,0,3,'2020-06-10 16:21:09'), (1165,'32131',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1166,'Ghhhhhhgfdd',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1167,'测试',9624,110,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1168,'厕所',9624,110,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1169,'u好',9624,132,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1170,'111',9624,4965,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1171,'2222',9624,4965,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1172,'111',9624,1337,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1173,'1111',9624,6517,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1174,'2222',9624,4875,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1175,'2222',9624,4875,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1176,'2123123',9624,4875,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1177,'em-smiley',9624,1337,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1178,'应该',9624,1337,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1179,'em-smiley',9624,1337,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1180,'em-flushed',9624,1337,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1181,'em-relieved',9624,1337,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1182,'em-smile',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1183,'em-sleeping',9624,753,'2020-06-10 16:17:59',0,0,2,'2020-06-10 16:21:09'), (1184,'你好',9624,753,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1185,'11',9624,5832,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1186,'22',9624,5832,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1187,'哈哈',9624,5832,'2020-06-10 16:17:59',0,0,1,'2020-06-10 16:21:09'), (1188,'我让',9624,7072,'2020-06-10 16:17:59',1,0,1,'2020-06-10 16:21:09'); /*!40000 ALTER TABLE `eb_store_service_log` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_system_admin # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_admin`; CREATE TABLE `eb_system_admin` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT '后台管理员表ID', `account` varchar(32) NOT NULL COMMENT '后台管理员账号', `pwd` char(32) NOT NULL COMMENT '后台管理员密码', `real_name` varchar(16) NOT NULL COMMENT '后台管理员姓名', `roles` varchar(128) NOT NULL COMMENT '后台管理员权限(menus_id)', `last_ip` varchar(16) DEFAULT NULL COMMENT '后台管理员最后一次登录ip', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `login_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '登录次数', `level` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '后台管理员级别', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '后台管理员状态 1有效0无效', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) USING BTREE, KEY `account` (`account`) USING BTREE, KEY `status` (`status`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='后台管理员表'; LOCK TABLES `eb_system_admin` WRITE; /*!40000 ALTER TABLE `eb_system_admin` DISABLE KEYS */; INSERT INTO `eb_system_admin` (`id`, `account`, `pwd`, `real_name`, `roles`, `last_ip`, `update_time`, `create_time`, `login_count`, `level`, `status`, `is_del`) VALUES (1,'admin','L8qdg72wbeQ=','admin','1','127.0.0.1',0,0,0,0,1,0), (2,'testadmin','sdIqelBleuI=','testadmin','2',NULL,NULL,0,0,111,1,1), (3,'123321','C3ek3XKltuA=','测试账号','1',NULL,NULL,0,0,2,1,0), (5,'test exsit','KX6BOMMThwQ=','stivepeimEdited','1,2,4',NULL,NULL,0,0,1,1,1), (6,'stivepeim','EppJQRAh5pQ=','321','1',NULL,NULL,0,0,0,0,1), (7,'123','WFmyq+/BYfE=','123','',NULL,NULL,0,0,1,0,1), (8,'111111','zwpDzJ7hklM=','111111','4',NULL,NULL,0,0,1,0,1), (9,'1234','GGwghqjFVQo=','1234','2',NULL,NULL,0,0,1,1,1), (10,'demo','Rb/KmlSjAxI=','demo','7',NULL,NULL,0,0,1,1,0), (11,'999','jkfEQFXUEOE=','测试','6',NULL,NULL,0,0,1,0,0); /*!40000 ALTER TABLE `eb_system_admin` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_system_attachment # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_attachment`; CREATE TABLE `eb_system_attachment` ( `att_id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '' COMMENT '附件名称', `att_dir` varchar(200) NOT NULL DEFAULT '' COMMENT '附件路径', `satt_dir` varchar(200) DEFAULT NULL COMMENT '压缩图片路径', `att_size` char(30) NOT NULL DEFAULT '' COMMENT '附件大小', `att_type` char(30) NOT NULL DEFAULT '' COMMENT '附件类型', `pid` int(10) NOT NULL DEFAULT '0' COMMENT '分类ID0编辑器,1商品图片,2拼团图片,3砍价图片,4秒杀图片,5文章图片,6组合数据图, 7前台用户', `image_type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '图片上传类型 1本地 2七牛云 3OSS 4COS ', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`att_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='附件管理表'; LOCK TABLES `eb_system_attachment` WRITE; /*!40000 ALTER TABLE `eb_system_attachment` DISABLE KEYS */; INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `create_time`, `update_time`) VALUES (2430,'dbd05d70020f4ae5a936054134807119.jpg','/Library/WebServer/Documents/zhongbang/java/crmeb/image/product/2020/06/04/dbd05d70020f4ae5a936054134807119.jpg','image/product/2020/06/04/dbd05d70020f4ae5a936054134807119.jpg','259636','image/jpeg',0,4,'2020-06-16 23:01:22','2020-06-16 23:01:36'), (2431,'44d42e784ec845c3a700c6be5da7852a.png','/Library/WebServer/Documents/zhongbang/java/crmeb/image/product/2020/06/04/44d42e784ec845c3a700c6be5da7852a.png','image/product/2020/06/04/44d42e784ec845c3a700c6be5da7852a.png','4133','image/png',0,4,'2020-06-16 23:01:22','2020-06-16 23:01:36'), (2432,'58f33186ccc34a6880b934013bd3a930.jpg','/Library/WebServer/Documents/zhongbang/java/crmeb/image/product/2020/06/04/58f33186ccc34a6880b934013bd3a930.jpg','image/product/2020/06/04/58f33186ccc34a6880b934013bd3a930.jpg','32686','image/jpeg',0,4,'2020-06-16 23:01:22','2020-06-16 23:01:36'), (2433,'33ee8156cc794254a25b9ae2ace9fcf7.jpg','/Library/WebServer/Documents/zhongbang/java/crmeb/image/product/2020/06/04/33ee8156cc794254a25b9ae2ace9fcf7.jpg','image/product/2020/06/04/33ee8156cc794254a25b9ae2ace9fcf7.jpg','29549','image/jpeg',0,4,'2020-06-16 23:01:22','2020-06-16 23:01:36'), (2434,'d531dbcd4e2f41c589cc3af1c3ff6bbdyx62a9br29.jpg','/Library/WebServer/Documents/zhongbang/java/crmeb/image/wechat/2020/06/16/d531dbcd4e2f41c589cc3af1c3ff6bbdyx62a9br29.jpg','image/wechat/2020/06/16/d531dbcd4e2f41c589cc3af1c3ff6bbdyx62a9br29.jpg','29549','image/jpeg',8,4,'2020-06-16 23:01:22','2020-06-16 23:01:36'), (2435,'2610029ef0194b26bd6b7cdb2b67e8dbdcobxhlyhz.jpg','/Library/WebServer/Documents/zhongbang/java/crmeb/image/wechat/2020/06/16/2610029ef0194b26bd6b7cdb2b67e8dbdcobxhlyhz.jpg','image/wechat/2020/06/16/2610029ef0194b26bd6b7cdb2b67e8dbdcobxhlyhz.jpg','29549','image/jpeg',8,4,'2020-06-16 23:01:22','2020-06-16 23:01:36'), (2436,'003b595d6cc544dd981d3468d5caafa38p24bq7sa7.jpg','/Library/WebServer/Documents/zhongbang/java/crmeb/image/wechat/2020/06/16/003b595d6cc544dd981d3468d5caafa38p24bq7sa7.jpg','image/wechat/2020/06/16/003b595d6cc544dd981d3468d5caafa38p24bq7sa7.jpg','240224','image/jpeg',8,4,'2020-06-16 23:01:22','2020-06-16 23:01:36'), (2437,'db09e3f969834b33962835c931c78a85xleo247utv.jpg','/Library/WebServer/Documents/zhongbang/java/crmeb/image/wechat/2020/06/16/db09e3f969834b33962835c931c78a85xleo247utv.jpg','image/wechat/2020/06/16/db09e3f969834b33962835c931c78a85xleo247utv.jpg','29549','image/jpeg',8,4,'2020-06-16 23:01:22','2020-06-16 23:01:36'), (2438,'91c608ac23044d81803eadce07c4d183kvddwrfpv8.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/16/91c608ac23044d81803eadce07c4d183kvddwrfpv8.jpg','image/wechat/2020/06/16/91c608ac23044d81803eadce07c4d183kvddwrfpv8.jpg','29549','image/jpeg',8,4,'2020-06-16 23:01:22','2020-06-16 23:01:36'), (2439,'168aab84dc7547ca927bd891d7d2873540fwmfte4w.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/06/16/168aab84dc7547ca927bd891d7d2873540fwmfte4w.jpg','image/product/2020/06/16/168aab84dc7547ca927bd891d7d2873540fwmfte4w.jpg','447519','image/jpeg',0,4,'2020-06-16 23:01:22','2020-06-16 23:01:36'), (2440,'b14554c21ad2401ca8caeb67ba9dd459jp87xn25mr.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/b14554c21ad2401ca8caeb67ba9dd459jp87xn25mr.jpg','image/wechat/2020/06/17/b14554c21ad2401ca8caeb67ba9dd459jp87xn25mr.jpg','29549','image/jpeg',8,4,'2020-06-17 10:23:39','2020-06-17 10:23:50'), (2441,'fc97b1cbb0c647e295a19cbad56dac04bb7ljy1fiv.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/fc97b1cbb0c647e295a19cbad56dac04bb7ljy1fiv.jpg','image/wechat/2020/06/17/fc97b1cbb0c647e295a19cbad56dac04bb7ljy1fiv.jpg','86469','image/jpeg',8,4,'2020-06-17 10:26:26','2020-06-17 10:26:50'), (2442,'e59437a5ded04fdaaa34e008e30626078gmukw13up.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/e59437a5ded04fdaaa34e008e30626078gmukw13up.jpg','image/wechat/2020/06/17/e59437a5ded04fdaaa34e008e30626078gmukw13up.jpg','240224','image/jpeg',8,4,'2020-06-17 10:27:32','2020-06-17 10:27:50'), (2443,'f774fa357a5048f3b85a02be3faedf4e057p8vxkgn.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/f774fa357a5048f3b85a02be3faedf4e057p8vxkgn.jpg','image/wechat/2020/06/17/f774fa357a5048f3b85a02be3faedf4e057p8vxkgn.jpg','240224','image/jpeg',8,4,'2020-06-17 10:27:50','2020-06-17 10:28:50'), (2444,'9359f9b8d4ab48278fbe57510ff08fbf6vsdyxewr9.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/9359f9b8d4ab48278fbe57510ff08fbf6vsdyxewr9.jpg','image/wechat/2020/06/17/9359f9b8d4ab48278fbe57510ff08fbf6vsdyxewr9.jpg','29549','image/jpeg',8,4,'2020-06-17 10:31:05','2020-06-17 10:31:50'), (2445,'0b63ea4e8ca34690ac3f4d5eb7402fd1y8qv7ahcz4.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/0b63ea4e8ca34690ac3f4d5eb7402fd1y8qv7ahcz4.jpg','image/wechat/2020/06/17/0b63ea4e8ca34690ac3f4d5eb7402fd1y8qv7ahcz4.jpg','55061','image/jpeg',8,4,'2020-06-17 10:34:41','2020-06-17 10:34:50'), (2446,'9178862f614b4a3fb558e0a7610b1463knki3452pw.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/9178862f614b4a3fb558e0a7610b1463knki3452pw.jpg','image/wechat/2020/06/17/9178862f614b4a3fb558e0a7610b1463knki3452pw.jpg','29549','image/jpeg',8,4,'2020-06-17 11:14:20','2020-06-17 11:15:09'), (2447,'8510f90e14a84838b1eb0447b7dc47dcssnpc9orfu.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/8510f90e14a84838b1eb0447b7dc47dcssnpc9orfu.jpg','image/wechat/2020/06/17/8510f90e14a84838b1eb0447b7dc47dcssnpc9orfu.jpg','240224','image/jpeg',8,4,'2020-06-17 11:16:22','2020-06-17 11:17:09'), (2448,'2710538d93114e95922228551c535b55kutbg9gefx.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/2710538d93114e95922228551c535b55kutbg9gefx.jpg','image/wechat/2020/06/17/2710538d93114e95922228551c535b55kutbg9gefx.jpg','86469','image/jpeg',8,4,'2020-06-17 11:16:42','2020-06-17 11:17:09'), (2449,'2ae75441f627463d9b550a6ecd1b6496e9d8c37ws9.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/2ae75441f627463d9b550a6ecd1b6496e9d8c37ws9.jpg','image/wechat/2020/06/17/2ae75441f627463d9b550a6ecd1b6496e9d8c37ws9.jpg','29549','image/jpeg',8,4,'2020-06-17 11:18:13','2020-06-17 11:19:09'), (2450,'a036423611ab4185a5a60255e07fe533ycqd0vduwv.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/a036423611ab4185a5a60255e07fe533ycqd0vduwv.jpg','image/wechat/2020/06/17/a036423611ab4185a5a60255e07fe533ycqd0vduwv.jpg','86469','image/jpeg',8,4,'2020-06-17 11:19:59','2020-06-17 11:20:09'), (2451,'1bd726f0ddd748e6bfc84dea47e49b80s7jk3vnhqw.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/1bd726f0ddd748e6bfc84dea47e49b80s7jk3vnhqw.jpg','image/wechat/2020/06/17/1bd726f0ddd748e6bfc84dea47e49b80s7jk3vnhqw.jpg','240224','image/jpeg',8,4,'2020-06-17 11:20:42','2020-06-17 11:21:09'), (2452,'16c8d2d8b803435fba928b17453b61f7k5qc15abd2.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/16c8d2d8b803435fba928b17453b61f7k5qc15abd2.jpg','image/wechat/2020/06/17/16c8d2d8b803435fba928b17453b61f7k5qc15abd2.jpg','240224','image/jpeg',8,4,'2020-06-17 11:21:00','2020-06-17 11:21:09'), (2453,'2df97180310245fca28274c2250bd2f6g7gzt0l2e7.png','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/2df97180310245fca28274c2250bd2f6g7gzt0l2e7.png','image/wechat/2020/06/17/2df97180310245fca28274c2250bd2f6g7gzt0l2e7.png','8594','image/png',8,4,'2020-06-17 11:22:48','2020-06-17 11:23:09'), (2454,'49f29eb0491b4dcaab2544d2b449ece4har1zic3va.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/49f29eb0491b4dcaab2544d2b449ece4har1zic3va.jpg','image/wechat/2020/06/17/49f29eb0491b4dcaab2544d2b449ece4har1zic3va.jpg','55061','image/jpeg',8,4,'2020-06-17 11:23:35','2020-06-17 11:24:09'), (2455,'91624536dde243f586d0143e0e263d84y3ucqg21rn.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/91624536dde243f586d0143e0e263d84y3ucqg21rn.jpg','image/wechat/2020/06/17/91624536dde243f586d0143e0e263d84y3ucqg21rn.jpg','240224','image/jpeg',8,4,'2020-06-17 11:24:15','2020-06-17 11:25:09'), (2456,'40ac3a3abd9b477791312333c225128fvobn7ebkeb.png','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/40ac3a3abd9b477791312333c225128fvobn7ebkeb.png','image/wechat/2020/06/17/40ac3a3abd9b477791312333c225128fvobn7ebkeb.png','2512','image/png',8,4,'2020-06-17 11:24:29','2020-06-17 11:25:09'), (2457,'738f2d0e441d40dc974b721480685154ooyvr4i0mx.png','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/738f2d0e441d40dc974b721480685154ooyvr4i0mx.png','image/wechat/2020/06/17/738f2d0e441d40dc974b721480685154ooyvr4i0mx.png','4133','image/png',8,4,'2020-06-17 11:31:03','2020-06-17 11:31:09'), (2458,'7d386e4c60ba47deb6f878bcb0eef010rmomkj6z9o.png','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/7d386e4c60ba47deb6f878bcb0eef010rmomkj6z9o.png','image/wechat/2020/06/17/7d386e4c60ba47deb6f878bcb0eef010rmomkj6z9o.png','4133','image/png',8,4,'2020-06-17 11:32:12','2020-06-17 11:33:09'), (2459,'a805ac1fe77b4627911e833b8bbd76ban5ot49bd2q.png','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/a805ac1fe77b4627911e833b8bbd76ban5ot49bd2q.png','image/wechat/2020/06/17/a805ac1fe77b4627911e833b8bbd76ban5ot49bd2q.png','4133','image/png',8,4,'2020-06-17 11:32:52','2020-06-17 11:33:09'), (2460,'2661d0d311f74b4885c309781b6369cab6oit6nepg.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/2661d0d311f74b4885c309781b6369cab6oit6nepg.jpg','image/wechat/2020/06/17/2661d0d311f74b4885c309781b6369cab6oit6nepg.jpg','55061','image/jpeg',8,4,'2020-06-17 11:33:27','2020-06-17 11:34:09'), (2461,'c3bc8fc99f714ceaaa5d09db5dc56e764wrgav42wn.png','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/c3bc8fc99f714ceaaa5d09db5dc56e764wrgav42wn.png','image/wechat/2020/06/17/c3bc8fc99f714ceaaa5d09db5dc56e764wrgav42wn.png','4133','image/png',8,4,'2020-06-17 11:33:55','2020-06-17 11:34:09'), (2462,'6b8adfdec36741d2b3150f72426073b1xbq9gkgg11.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/6b8adfdec36741d2b3150f72426073b1xbq9gkgg11.jpg','image/wechat/2020/06/17/6b8adfdec36741d2b3150f72426073b1xbq9gkgg11.jpg','55061','image/jpeg',8,4,'2020-06-17 11:35:37','2020-06-17 11:36:09'), (2463,'111d6de34d904579893d4be5ba35659a56gig4ywri.png','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/111d6de34d904579893d4be5ba35659a56gig4ywri.png','image/wechat/2020/06/17/111d6de34d904579893d4be5ba35659a56gig4ywri.png','8594','image/png',8,4,'2020-06-17 11:35:48','2020-06-17 11:36:09'), (2464,'833e608cd4584431b61f007eca967068zq508st2ad.png','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/833e608cd4584431b61f007eca967068zq508st2ad.png','image/wechat/2020/06/17/833e608cd4584431b61f007eca967068zq508st2ad.png','4133','image/png',8,4,'2020-06-17 11:38:48','2020-06-17 11:39:09'), (2465,'b14735d5811d489faab371ed7f60f1f9j0wu8m0bfw.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/b14735d5811d489faab371ed7f60f1f9j0wu8m0bfw.jpg','image/wechat/2020/06/17/b14735d5811d489faab371ed7f60f1f9j0wu8m0bfw.jpg','57803','image/jpeg',8,4,'2020-06-17 11:38:56','2020-06-17 11:39:09'), (2466,'eb5389cc3c2945dba68e790a423e14c4z7u3ukfatw.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/eb5389cc3c2945dba68e790a423e14c4z7u3ukfatw.jpg','image/wechat/2020/06/17/eb5389cc3c2945dba68e790a423e14c4z7u3ukfatw.jpg','29549','image/jpeg',8,4,'2020-06-17 11:39:36','2020-06-17 11:40:09'), (2467,'3a49912fa3ed4b3b88e5f7a677b8fd85vkcnrstsrs.png','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/3a49912fa3ed4b3b88e5f7a677b8fd85vkcnrstsrs.png','image/wechat/2020/06/17/3a49912fa3ed4b3b88e5f7a677b8fd85vkcnrstsrs.png','4133','image/png',8,4,'2020-06-17 11:40:30','2020-06-17 11:41:09'), (2468,'249934f92bcd4516ba6df505b971fe5flx8rcad2dn.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/17/249934f92bcd4516ba6df505b971fe5flx8rcad2dn.jpg','image/wechat/2020/06/17/249934f92bcd4516ba6df505b971fe5flx8rcad2dn.jpg','29549','image/jpeg',8,4,'2020-06-17 11:43:13','2020-06-17 11:44:09'), (2469,'586b5a84cb6e4e7ba1d37b5c6a6ab4acupuwx8qxob.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/18/586b5a84cb6e4e7ba1d37b5c6a6ab4acupuwx8qxob.jpg','image/wechat/2020/06/18/586b5a84cb6e4e7ba1d37b5c6a6ab4acupuwx8qxob.jpg','883607','image/jpeg',8,4,'2020-06-18 09:35:10','2020-06-18 09:35:39'), (2470,'6b4140e23ba74f0381b206deb0c92007cx2utc0hbn.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/06/28/6b4140e23ba74f0381b206deb0c92007cx2utc0hbn.jpg','image/product/2020/06/28/6b4140e23ba74f0381b206deb0c92007cx2utc0hbn.jpg','29050','image/jpeg',0,2,'2020-06-28 09:48:35','2020-06-28 09:48:50'), (2471,'9a9ac92956c34599acb591546501b5114gwvjf37gx.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/06/28/9a9ac92956c34599acb591546501b5114gwvjf37gx.jpg','image/product/2020/06/28/9a9ac92956c34599acb591546501b5114gwvjf37gx.jpg','29050','image/jpeg',0,2,'2020-06-28 10:02:59','2020-06-28 10:03:50'), (2472,'8b5de9f64e3a469fa073543de5039a59lw2kfu6sj9.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/06/28/8b5de9f64e3a469fa073543de5039a59lw2kfu6sj9.jpg','image/wechat/2020/06/28/8b5de9f64e3a469fa073543de5039a59lw2kfu6sj9.jpg','337764','image/jpeg',8,4,'2020-06-28 14:02:23','2020-06-28 14:02:49'), (2473,'0330325518e94dc4963a9a5e43426ed955k60sxro4.png','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/07/0330325518e94dc4963a9a5e43426ed955k60sxro4.png','image/product/2020/07/07/0330325518e94dc4963a9a5e43426ed955k60sxro4.png','65227','image/png',0,4,'2020-07-07 11:17:16','2020-07-07 11:18:12'), (2474,'5375ccfcb8254ae28478a11285e240afmgs4zqtjo1.png','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/07/5375ccfcb8254ae28478a11285e240afmgs4zqtjo1.png','image/product/2020/07/07/5375ccfcb8254ae28478a11285e240afmgs4zqtjo1.png','126383','image/png',0,4,'2020-07-07 11:18:40','2020-07-07 11:19:12'), (2475,'3de5268db06044708aa041609969f24f7mbwuktrwg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/24/3de5268db06044708aa041609969f24f7mbwuktrwg.jpg','image/product/2020/07/24/3de5268db06044708aa041609969f24f7mbwuktrwg.jpg','29549','image/jpeg',0,4,'2020-07-24 11:18:38','2020-07-24 11:18:44'), (2476,'b3cea3fa87744102a500cc334ca10e62slwtoj09n7.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/24/b3cea3fa87744102a500cc334ca10e62slwtoj09n7.jpg','image/product/2020/07/24/b3cea3fa87744102a500cc334ca10e62slwtoj09n7.jpg','29549','image/jpeg',185,4,'2020-07-24 11:18:55','2020-08-10 12:04:02'), (2480,'8659bc058ab64288b95b518eb7153feb4snsnmk4fw.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/07/27/8659bc058ab64288b95b518eb7153feb4snsnmk4fw.jpg','image/wechat/2020/07/27/8659bc058ab64288b95b518eb7153feb4snsnmk4fw.jpg','29549','image/jpeg',8,4,'2020-07-27 17:53:45','2020-07-27 17:54:26'), (2484,'4eb06f6af8c04b10b51b7875f1579a9dkqllknvfwz.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/29/4eb06f6af8c04b10b51b7875f1579a9dkqllknvfwz.jpg','image/product/2020/07/29/4eb06f6af8c04b10b51b7875f1579a9dkqllknvfwz.jpg','37380','image/jpeg',185,4,'2020-07-29 11:19:39','2020-08-10 11:52:46'), (2492,'171995bc2bee466a9ce6b68b044b12c3vscvise34f.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/171995bc2bee466a9ce6b68b044b12c3vscvise34f.jpg','image/user/2020/07/30/171995bc2bee466a9ce6b68b044b12c3vscvise34f.jpg','32686','image/jpeg',7,4,'2020-07-30 15:42:20','2020-07-30 15:42:27'), (2493,'dc78ff9cd8424dce993627fc95f9f479holizw4ktb.png','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/dc78ff9cd8424dce993627fc95f9f479holizw4ktb.png','image/user/2020/07/30/dc78ff9cd8424dce993627fc95f9f479holizw4ktb.png','1690','image/png',7,4,'2020-07-30 15:51:40','2020-07-30 15:52:27'), (2494,'6518e6954b014edbb89536f9f23e00952lyy50lie6.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/6518e6954b014edbb89536f9f23e00952lyy50lie6.jpg','image/user/2020/07/30/6518e6954b014edbb89536f9f23e00952lyy50lie6.jpg','755389','image/jpeg',7,4,'2020-07-30 16:54:22','2020-07-30 16:54:58'), (2495,'1ac547d8b420455d97e2ecefbe95dd54da8cv9t67s.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/1ac547d8b420455d97e2ecefbe95dd54da8cv9t67s.jpg','image/user/2020/07/30/1ac547d8b420455d97e2ecefbe95dd54da8cv9t67s.jpg','32686','image/jpeg',7,4,'2020-07-30 17:13:26','2020-07-30 17:13:56'), (2497,'841d04c57a214c8cbdd150d0b2da1e3f7j2578azs0.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/841d04c57a214c8cbdd150d0b2da1e3f7j2578azs0.jpg','image/user/2020/07/30/841d04c57a214c8cbdd150d0b2da1e3f7j2578azs0.jpg','755389','image/jpeg',7,4,'2020-07-30 17:34:27','2020-07-30 17:34:57'), (2498,'29847447fa3c46afbd04b70ef7d8bfcbm82rnaplat.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/29847447fa3c46afbd04b70ef7d8bfcbm82rnaplat.jpg','image/user/2020/07/30/29847447fa3c46afbd04b70ef7d8bfcbm82rnaplat.jpg','755389','image/jpeg',7,4,'2020-07-30 17:37:25','2020-07-30 17:37:58'), (2499,'e67517d4cb474a73afa0f0cb14422a3au97tdtpqhp.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/e67517d4cb474a73afa0f0cb14422a3au97tdtpqhp.jpg','image/user/2020/07/30/e67517d4cb474a73afa0f0cb14422a3au97tdtpqhp.jpg','32686','image/jpeg',7,4,'2020-07-30 18:02:32','2020-07-30 18:02:47'), (2500,'a341b9a50e4740359a8a777a7798aa68btxpzfs0t9.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/a341b9a50e4740359a8a777a7798aa68btxpzfs0t9.jpg','image/user/2020/07/30/a341b9a50e4740359a8a777a7798aa68btxpzfs0t9.jpg','32686','image/jpeg',7,4,'2020-07-30 18:02:44','2020-07-30 18:02:47'), (2501,'f74830705c35458b8c1f8cd8237ee524ly0bjswgq3.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/f74830705c35458b8c1f8cd8237ee524ly0bjswgq3.jpg','image/user/2020/07/30/f74830705c35458b8c1f8cd8237ee524ly0bjswgq3.jpg','755389','image/jpeg',7,4,'2020-07-30 18:03:27','2020-07-30 18:03:48'), (2502,'3e72d0a9c889415db17c8f6f2d908f77vklmx135a4.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/3e72d0a9c889415db17c8f6f2d908f77vklmx135a4.jpg','image/user/2020/07/30/3e72d0a9c889415db17c8f6f2d908f77vklmx135a4.jpg','32686','image/jpeg',7,4,'2020-07-30 18:03:41','2020-07-30 18:03:47'), (2503,'be1e551e6ccc48be99486f6b14f89359pi85nh40k7.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/be1e551e6ccc48be99486f6b14f89359pi85nh40k7.jpg','image/user/2020/07/30/be1e551e6ccc48be99486f6b14f89359pi85nh40k7.jpg','32686','image/jpeg',7,4,'2020-07-30 18:04:32','2020-07-30 18:04:47'), (2504,'ec4e55df44004cbe9b6bdd973c332fbfgi3e5xgdbb.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/ec4e55df44004cbe9b6bdd973c332fbfgi3e5xgdbb.jpg','image/user/2020/07/30/ec4e55df44004cbe9b6bdd973c332fbfgi3e5xgdbb.jpg','32686','image/jpeg',7,4,'2020-07-30 18:04:40','2020-07-30 18:04:47'), (2505,'aabd02ed842e4909a4916c9e494085f88m4x8s9w0g.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/aabd02ed842e4909a4916c9e494085f88m4x8s9w0g.jpg','image/user/2020/07/30/aabd02ed842e4909a4916c9e494085f88m4x8s9w0g.jpg','32686','image/jpeg',7,4,'2020-07-30 18:06:19','2020-07-30 18:06:47'), (2506,'1dee4898821345fc9a75247686732a58n62b0f78se.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/1dee4898821345fc9a75247686732a58n62b0f78se.jpg','image/user/2020/07/30/1dee4898821345fc9a75247686732a58n62b0f78se.jpg','32686','image/jpeg',7,4,'2020-07-30 18:06:39','2020-07-30 18:06:47'), (2507,'5e372b79f914405a8cb6ec456f7749699lqta8et0i.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/5e372b79f914405a8cb6ec456f7749699lqta8et0i.jpg','image/user/2020/07/30/5e372b79f914405a8cb6ec456f7749699lqta8et0i.jpg','32686','image/jpeg',7,4,'2020-07-30 18:10:44','2020-07-30 18:10:47'), (2508,'983cd5cbbb3c40d7a425f812355012eenayi0dpbjk.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/983cd5cbbb3c40d7a425f812355012eenayi0dpbjk.jpg','image/user/2020/07/30/983cd5cbbb3c40d7a425f812355012eenayi0dpbjk.jpg','32686','image/jpeg',7,4,'2020-07-30 18:11:09','2020-07-30 18:11:47'), (2509,'f9ea49162f47452b9a2d11cff2f5160b1h58ibyvj9.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/f9ea49162f47452b9a2d11cff2f5160b1h58ibyvj9.jpg','image/user/2020/07/30/f9ea49162f47452b9a2d11cff2f5160b1h58ibyvj9.jpg','32686','image/jpeg',7,4,'2020-07-30 18:12:08','2020-07-30 18:12:47'), (2510,'4562d919ccf54c00ab34ce8e45f39b71eu1esvq8dn.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/4562d919ccf54c00ab34ce8e45f39b71eu1esvq8dn.jpg','image/user/2020/07/30/4562d919ccf54c00ab34ce8e45f39b71eu1esvq8dn.jpg','32686','image/jpeg',7,4,'2020-07-30 18:13:46','2020-07-30 18:13:47'), (2511,'e5b081256cf547689d5b8bacf1b2fe05jxm3fcwawg.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/e5b081256cf547689d5b8bacf1b2fe05jxm3fcwawg.jpg','image/user/2020/07/30/e5b081256cf547689d5b8bacf1b2fe05jxm3fcwawg.jpg','32686','image/jpeg',7,4,'2020-07-30 18:14:25','2020-07-30 18:14:47'), (2512,'730929382b7a4ed791304e9d8a3f1c14hcglm52dql.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/730929382b7a4ed791304e9d8a3f1c14hcglm52dql.jpg','image/user/2020/07/30/730929382b7a4ed791304e9d8a3f1c14hcglm52dql.jpg','32686','image/jpeg',7,4,'2020-07-30 18:16:37','2020-07-30 18:16:47'), (2513,'14f3b19d6ceb4130805331b4d7bfb67eq6x6zm26dc.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/14f3b19d6ceb4130805331b4d7bfb67eq6x6zm26dc.jpg','image/user/2020/07/30/14f3b19d6ceb4130805331b4d7bfb67eq6x6zm26dc.jpg','32686','image/jpeg',7,4,'2020-07-30 18:18:27','2020-07-30 18:18:47'), (2514,'37f2a3cc7f8348c0b43128100340b43byrtg8qwtz4.png','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/37f2a3cc7f8348c0b43128100340b43byrtg8qwtz4.png','image/user/2020/07/30/37f2a3cc7f8348c0b43128100340b43byrtg8qwtz4.png','1520','image/png',7,4,'2020-07-30 18:19:28','2020-07-30 18:19:47'), (2515,'48956544e1554f76aeaa60becde9cb5c5jcu266hyn.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/48956544e1554f76aeaa60becde9cb5c5jcu266hyn.jpg','image/user/2020/07/30/48956544e1554f76aeaa60becde9cb5c5jcu266hyn.jpg','32686','image/jpeg',7,4,'2020-07-30 18:22:11','2020-07-30 18:22:47'), (2516,'1acead710d324925b813369ff17b171008fg0tj9l4.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/1acead710d324925b813369ff17b171008fg0tj9l4.jpg','image/user/2020/07/30/1acead710d324925b813369ff17b171008fg0tj9l4.jpg','32686','image/jpeg',7,4,'2020-07-30 18:23:15','2020-07-30 18:23:47'), (2517,'f3e9cd2aceb54fb4ac278176c993b16bvv1bbusppe.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/f3e9cd2aceb54fb4ac278176c993b16bvv1bbusppe.jpg','image/user/2020/07/30/f3e9cd2aceb54fb4ac278176c993b16bvv1bbusppe.jpg','32686','image/jpeg',7,4,'2020-07-30 18:23:36','2020-07-30 18:23:47'), (2518,'5a9c073430f542f3a8237d2091436346l4gig2uetu.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/5a9c073430f542f3a8237d2091436346l4gig2uetu.jpg','image/user/2020/07/30/5a9c073430f542f3a8237d2091436346l4gig2uetu.jpg','32686','image/jpeg',7,4,'2020-07-30 18:25:17','2020-07-30 18:25:47'), (2519,'f9e9e0d332c64c8daad4758459805f71xaroocvds7.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/f9e9e0d332c64c8daad4758459805f71xaroocvds7.jpg','image/user/2020/07/30/f9e9e0d332c64c8daad4758459805f71xaroocvds7.jpg','32686','image/jpeg',7,4,'2020-07-30 18:26:22','2020-07-30 18:26:47'), (2520,'24d47e114af2412bac3f902eba211f78iix819mj6z.png','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/24d47e114af2412bac3f902eba211f78iix819mj6z.png','image/user/2020/07/30/24d47e114af2412bac3f902eba211f78iix819mj6z.png','1690','image/png',7,4,'2020-07-30 18:27:40','2020-07-30 18:27:47'), (2521,'059597b150c74c9b8e3e89862fe3fc79vyvz4khjiq.png','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/059597b150c74c9b8e3e89862fe3fc79vyvz4khjiq.png','image/user/2020/07/30/059597b150c74c9b8e3e89862fe3fc79vyvz4khjiq.png','2016','image/png',7,4,'2020-07-30 18:29:15','2020-07-30 18:29:47'), (2523,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/7f8e5a7bc9c941e5854857d0411829f2ayuct0j713.jpg','image/user/2020/07/30/7f8e5a7bc9c941e5854857d0411829f2ayuct0j713.jpg','32686','jpeg',7,4,'2020-07-30 18:40:01','2020-07-30 18:40:05'), (2524,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/69c159d5d42542e0b4e34a77860a7585eestafnoy5.jpg','image/user/2020/07/30/69c159d5d42542e0b4e34a77860a7585eestafnoy5.jpg','32686','jpeg',7,4,'2020-07-30 18:40:40','2020-07-30 18:40:41'), (2525,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/fbda2eb8eeb241bcb408555172ffa072mt5i4aryui.jpg','image/user/2020/07/30/fbda2eb8eeb241bcb408555172ffa072mt5i4aryui.jpg','32686','jpeg',7,4,'2020-07-30 19:15:51','2020-07-30 19:15:52'), (2526,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/52ba1bed30f3433ca46f548a84bed45amrlmxazklf.jpg','image/user/2020/07/30/52ba1bed30f3433ca46f548a84bed45amrlmxazklf.jpg','32686','jpeg',7,4,'2020-07-30 19:22:39','2020-07-30 19:22:42'), (2527,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/0cb17971ee494c23ad8914e56bcd88ddz0c3kdo5wh.jpg','image/user/2020/07/30/0cb17971ee494c23ad8914e56bcd88ddz0c3kdo5wh.jpg','32686','jpeg',7,4,'2020-07-30 19:23:53','2020-07-30 19:23:57'), (2528,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/3e76bd1943954e398267c93062ce24252o1cfv50qq.jpg','image/user/2020/07/30/3e76bd1943954e398267c93062ce24252o1cfv50qq.jpg','32686','jpeg',7,4,'2020-07-30 19:28:55','2020-07-30 19:28:57'), (2529,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/5aa810040e5745e28ee3305b7f38e45faezt154k6e.jpg','image/user/2020/07/30/5aa810040e5745e28ee3305b7f38e45faezt154k6e.jpg','32686','jpeg',7,4,'2020-07-30 19:34:04','2020-07-30 19:34:07'), (2530,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/2c808f8291e343ceaff4bbd53fb2954ef493sw0iqj.jpg','image/user/2020/07/30/2c808f8291e343ceaff4bbd53fb2954ef493sw0iqj.jpg','32686','jpeg',7,4,'2020-07-30 19:35:19','2020-07-30 19:35:23'), (2531,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/5d56d7889a0f46d98653094926bb3d3ewd6eur8ejs.jpg','image/user/2020/07/30/5d56d7889a0f46d98653094926bb3d3ewd6eur8ejs.jpg','32686','jpeg',7,4,'2020-07-30 19:38:26','2020-07-30 19:38:28'), (2532,'4-002.png','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/2e6a5227f48a4c6c975a6977ead6a2e9svifxezii4.png','image/user/2020/07/30/2e6a5227f48a4c6c975a6977ead6a2e9svifxezii4.png','2016','png',7,4,'2020-07-30 19:38:41','2020-07-30 19:38:43'), (2533,'1-001.png','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/623742ba002541e9ae0a1271516e97f0km4dayeykw.png','image/user/2020/07/30/623742ba002541e9ae0a1271516e97f0km4dayeykw.png','1946','png',7,4,'2020-07-30 19:39:09','2020-07-30 19:39:13'), (2534,'SW-BBF0D48E91795F151BA3AC5E319F3686.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/85ab2e6a447440dbb05611c141cdf54139j8c2nko2.jpg','image/user/2020/07/30/85ab2e6a447440dbb05611c141cdf54139j8c2nko2.jpg','755389','jpeg',7,4,'2020-07-30 20:22:42','2020-07-30 20:22:46'), (2535,'SW-B8FFEF23891DE58D6251FD094519A72D.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/3cf2f798d64e4f9d831874b9107d7977kb9ygh4zlq.jpg','image/user/2020/07/30/3cf2f798d64e4f9d831874b9107d7977kb9ygh4zlq.jpg','363629','jpeg',7,4,'2020-07-30 20:24:15','2020-07-30 20:24:20'), (2536,'SW-286B31D7662720D95832E770DB73F0C6.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/c3515bd01b8540038570a041745b74921xnkyimnq9.jpg','image/user/2020/07/30/c3515bd01b8540038570a041745b74921xnkyimnq9.jpg','342085','jpeg',7,4,'2020-07-30 20:24:35','2020-07-30 20:24:40'), (2537,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/e7a2e7f02b464dafb9557ba113b15deezncezcbehn.jpg','image/user/2020/07/30/e7a2e7f02b464dafb9557ba113b15deezncezcbehn.jpg','32686','jpeg',7,4,'2020-07-30 20:25:08','2020-07-30 20:25:10'), (2538,'SW-2CB2A937588C5B38774CA8950C7D43E1.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/f78f013901704aac963f3ea78de0ecd1vnlc9yfzos.jpg','image/user/2020/07/30/f78f013901704aac963f3ea78de0ecd1vnlc9yfzos.jpg','759998','jpeg',7,4,'2020-07-30 20:25:11','2020-07-30 20:25:16'), (2539,'SW-BA20C4CC0D8060B76F4868BEBB21C90E.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/85ba90eb0f26429dba0c675555ec344437ypntljg1.jpg','image/user/2020/07/30/85ba90eb0f26429dba0c675555ec344437ypntljg1.jpg','690327','jpeg',7,4,'2020-07-30 20:25:39','2020-07-30 20:25:41'), (2540,'4-002.png','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/aacc4edee5684fa39a5171ab53c80cfb2zg9rpmiij.png','image/user/2020/07/30/aacc4edee5684fa39a5171ab53c80cfb2zg9rpmiij.png','2016','png',7,4,'2020-07-30 20:26:00','2020-07-30 20:26:05'), (2541,'1-001.png','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/aee674ed05ab46d79a0cd2e8b4732c6dttfmuwoyag.png','image/user/2020/07/30/aee674ed05ab46d79a0cd2e8b4732c6dttfmuwoyag.png','1946','png',7,4,'2020-07-30 20:26:12','2020-07-30 20:26:15'), (2542,'SW-2CB2A937588C5B38774CA8950C7D43E1.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/5f199fa5198f4bc9ae0bfda45e6ee862mi4i2up4ox.jpg','image/user/2020/07/30/5f199fa5198f4bc9ae0bfda45e6ee862mi4i2up4ox.jpg','759998','jpeg',7,4,'2020-07-30 20:26:34','2020-07-30 20:26:36'), (2543,'SW-2CB2A937588C5B38774CA8950C7D43E1.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/7836b24b3eb543d7967e088f8addf60fene1cipn6g.jpg','image/user/2020/07/30/7836b24b3eb543d7967e088f8addf60fene1cipn6g.jpg','759998','jpeg',7,4,'2020-07-30 20:28:19','2020-07-30 20:28:22'), (2544,'SW-BBF0D48E91795F151BA3AC5E319F3686.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/6bb636aaac33401cb3ca6ad8a2f736a485x9ii3s67.jpg','image/user/2020/07/30/6bb636aaac33401cb3ca6ad8a2f736a485x9ii3s67.jpg','755389','jpeg',7,4,'2020-07-30 20:28:45','2020-07-30 20:28:51'), (2545,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/afb38229dfbf4ddf8557633b75c24be5kwqejytw9a.jpg','image/product/2020/07/30/afb38229dfbf4ddf8557633b75c24be5kwqejytw9a.jpg','32686','jpeg',1,4,'2020-07-30 20:30:10','2020-07-30 20:30:15'), (2546,'SW-A1E8CBED75A96A8C2F43422A4F998FCD.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/ef1d4e62fabe45c8b123a8f8733cfea5lb5xj1m83o.jpg','image/user/2020/07/30/ef1d4e62fabe45c8b123a8f8733cfea5lb5xj1m83o.jpg','1900216','jpeg',7,4,'2020-07-30 20:30:25','2020-07-30 20:30:34'), (2547,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/24724ec9a4f64cfb8adeaab5e8a9adc4ioe32gx9fw.jpg','image/product/2020/07/30/24724ec9a4f64cfb8adeaab5e8a9adc4ioe32gx9fw.jpg','32686','jpeg',1,4,'2020-07-30 20:31:32','2020-07-30 20:31:35'), (2548,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/dd39e1f7544045319eb07ef062c0a150xet3aubt4r.jpg','image/product/2020/07/30/dd39e1f7544045319eb07ef062c0a150xet3aubt4r.jpg','32686','jpeg',1,4,'2020-07-30 20:31:38','2020-07-30 20:31:40'), (2549,'4-002.png','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/f523d8c34f7e48b68f817ec4e1b31defyemi7fd7a0.png','image/product/2020/07/30/f523d8c34f7e48b68f817ec4e1b31defyemi7fd7a0.png','2016','png',1,4,'2020-07-30 20:31:45','2020-07-30 20:31:50'), (2550,'SW-2CB2A937588C5B38774CA8950C7D43E1.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/ba8a9adfa0d9444c81c2eb34666b6cf6p4hc8e7036.jpg','image/user/2020/07/30/ba8a9adfa0d9444c81c2eb34666b6cf6p4hc8e7036.jpg','759998','jpeg',7,4,'2020-07-30 20:31:49','2020-07-30 20:31:51'), (2551,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/b36539e6039f46c89697b067597c4724zfc306dgkl.jpg','image/product/2020/07/30/b36539e6039f46c89697b067597c4724zfc306dgkl.jpg','32686','jpeg',1,4,'2020-07-30 20:32:40','2020-07-30 20:32:45'), (2552,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/00c89e21e6ff4e5787461d402ad855fbvb4wn0hw0t.jpg','image/product/2020/07/30/00c89e21e6ff4e5787461d402ad855fbvb4wn0hw0t.jpg','32686','jpeg',1,4,'2020-07-30 20:33:13','2020-07-30 20:33:15'), (2553,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/4e9f273e324a4216bd2b7af56e2be76aytdlvjfuc9.jpg','image/product/2020/07/30/4e9f273e324a4216bd2b7af56e2be76aytdlvjfuc9.jpg','32686','jpeg',1,4,'2020-07-30 20:33:24','2020-07-30 20:33:25'), (2554,'SW-BBF0D48E91795F151BA3AC5E319F3686.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/69cd22611c2e46bcb6ed71753e244ffairkdphxbzn.jpg','image/user/2020/07/30/69cd22611c2e46bcb6ed71753e244ffairkdphxbzn.jpg','755389','jpeg',7,4,'2020-07-30 20:33:52','2020-07-30 20:33:56'), (2555,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/2bae07e7bd234eed95f69ad3d03816661492kpno0k.jpg','image/product/2020/07/30/2bae07e7bd234eed95f69ad3d03816661492kpno0k.jpg','32686','jpeg',1,4,'2020-07-30 20:33:58','2020-07-30 20:34:00'), (2556,'SW-2CB2A937588C5B38774CA8950C7D43E1.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/1f905032021e4871b488c90863352cd0p7q7rwdk47.jpg','image/user/2020/07/30/1f905032021e4871b488c90863352cd0p7q7rwdk47.jpg','759998','jpeg',7,4,'2020-07-30 20:34:30','2020-07-30 20:34:31'), (2557,'SW-BBF0D48E91795F151BA3AC5E319F3686.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/626ce8708e4646c9883700dc180fa983srjwe2ooqs.jpg','image/user/2020/07/30/626ce8708e4646c9883700dc180fa983srjwe2ooqs.jpg','755389','jpeg',7,4,'2020-07-30 20:36:06','2020-07-30 20:36:11'), (2558,'SW-2CB2A937588C5B38774CA8950C7D43E1.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/90f5bf06fd084f02910021bad175298a3as09xz0xt.jpg','image/user/2020/07/30/90f5bf06fd084f02910021bad175298a3as09xz0xt.jpg','759998','jpeg',7,4,'2020-07-30 20:37:27','2020-07-30 20:37:32'), (2559,'SW-C1DF2CA4F28E604BAEC6FC243D8D5359.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/687b07ca6b5e4d2a932a27f85794502b30j6nw20lt.jpg','image/user/2020/07/30/687b07ca6b5e4d2a932a27f85794502b30j6nw20lt.jpg','410760','jpeg',7,4,'2020-07-30 20:37:39','2020-07-30 20:37:41'), (2560,'SW-2CB2A937588C5B38774CA8950C7D43E1.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/b8d5fe8d6b574fae9c415fc45fce7440uyil6x7nq6.jpg','image/user/2020/07/30/b8d5fe8d6b574fae9c415fc45fce7440uyil6x7nq6.jpg','759998','jpeg',7,4,'2020-07-30 20:40:14','2020-07-30 20:40:17'), (2561,'SW-BBF0D48E91795F151BA3AC5E319F3686.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/b7928719f7904f719491ce30fced7572a5o5sv8v76.jpg','image/user/2020/07/30/b7928719f7904f719491ce30fced7572a5o5sv8v76.jpg','755389','jpeg',7,4,'2020-07-30 20:40:49','2020-07-30 20:40:52'), (2562,'SW-BBF0D48E91795F151BA3AC5E319F3686.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/6191c29c750c47919c9125dadce74804a1dtmgeyki.jpg','image/user/2020/07/30/6191c29c750c47919c9125dadce74804a1dtmgeyki.jpg','755389','jpeg',7,4,'2020-07-30 20:41:18','2020-07-30 20:41:22'), (2563,'SW-C1DF2CA4F28E604BAEC6FC243D8D5359.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/fe56e2f9ebcf4d4b9bb7eb6b2219be393aevy67slv.jpg','image/user/2020/07/30/fe56e2f9ebcf4d4b9bb7eb6b2219be393aevy67slv.jpg','410760','jpeg',7,4,'2020-07-30 20:41:40','2020-07-30 20:41:41'), (2564,'SW-1E197D524A299755721CE67BBEC42691.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/2327eece13254c40b8ccd3ea11e6b399gpgo07kmdj.jpg','image/user/2020/07/30/2327eece13254c40b8ccd3ea11e6b399gpgo07kmdj.jpg','1961701','jpeg',7,4,'2020-07-30 20:42:05','2020-07-30 20:42:10'), (2565,'SW-AD7BDE4A74C0E835188E5E9FC0A74C9B.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/7268c426c957454a8cc1024790112acb260nz78cp1.jpg','image/user/2020/07/30/7268c426c957454a8cc1024790112acb260nz78cp1.jpg','630810','jpeg',7,4,'2020-07-30 20:42:15','2020-07-30 20:42:17'), (2566,'SW-5C89C6C891CC7CDB9A410BA426DD5A8E.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/13f2df14e05343b0a7c5cb4ed568ce09amjvby2l6d.jpg','image/user/2020/07/30/13f2df14e05343b0a7c5cb4ed568ce09amjvby2l6d.jpg','115411','jpeg',7,4,'2020-07-30 20:43:08','2020-07-30 20:43:11'), (2567,'SW-4E2B1345E90440EFA598901654308CE6.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/5a131723785140238141d8bf7c90535e05k5fron5l.jpg','image/user/2020/07/30/5a131723785140238141d8bf7c90535e05k5fron5l.jpg','171101','jpeg',7,4,'2020-07-30 20:54:17','2020-07-30 20:54:22'), (2568,'SW-2CB2A937588C5B38774CA8950C7D43E1.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/ab8c25b29d0f48399d2de9b8d22aa6f4m2anftyyzm.jpg','image/user/2020/07/30/ab8c25b29d0f48399d2de9b8d22aa6f4m2anftyyzm.jpg','759998','jpeg',7,4,'2020-07-30 20:55:38','2020-07-30 20:55:43'), (2569,'SW-BBF0D48E91795F151BA3AC5E319F3686.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/d7d5f187f64741bcbdc791a4b45d00876o0gxxm0la.jpg','image/user/2020/07/30/d7d5f187f64741bcbdc791a4b45d00876o0gxxm0la.jpg','755389','jpeg',7,4,'2020-07-30 20:56:53','2020-07-30 20:56:57'), (2570,'SW-2CB2A937588C5B38774CA8950C7D43E1.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/1d4f29f0b336479782d068bfe3a701d9mwg8ivkhti.jpg','image/user/2020/07/30/1d4f29f0b336479782d068bfe3a701d9mwg8ivkhti.jpg','759998','jpeg',7,4,'2020-07-30 20:57:28','2020-07-30 20:57:33'), (2571,'SW-2CB2A937588C5B38774CA8950C7D43E1.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/ea1abfde978b4a6bb7b29073970e6bee8dn7vc3dne.jpg','image/user/2020/07/30/ea1abfde978b4a6bb7b29073970e6bee8dn7vc3dne.jpg','759998','jpeg',7,4,'2020-07-30 20:57:53','2020-07-30 20:57:58'), (2572,'SW-2CB2A937588C5B38774CA8950C7D43E1.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/f94f4ce9015c409986e0a746774b7cc5uxpv7zmfp1.jpg','image/user/2020/07/30/f94f4ce9015c409986e0a746774b7cc5uxpv7zmfp1.jpg','759998','jpeg',7,4,'2020-07-30 20:58:32','2020-07-30 20:58:38'), (2573,'4-002.png','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/be38ef56a19b4af39877cb8ca94b5f74m0zy3mvwh3.png','image/user/2020/07/30/be38ef56a19b4af39877cb8ca94b5f74m0zy3mvwh3.png','2016','png',7,4,'2020-07-30 21:38:43','2020-07-30 21:38:43'), (2574,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/4a410aa2bd794922b818b1935427453f2h742oer9n.jpg','image/user/2020/07/30/4a410aa2bd794922b818b1935427453f2h742oer9n.jpg','32686','jpeg',7,4,'2020-07-30 21:39:59','2020-07-30 21:40:03'), (2575,'1-001.png','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/6d65a14ed70e4a9b96466daf8aefcd8b61014zybv8.png','image/user/2020/07/30/6d65a14ed70e4a9b96466daf8aefcd8b61014zybv8.png','1946','png',7,4,'2020-07-30 21:40:09','2020-07-30 21:40:13'), (2576,'code_1.png','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/b9a787e13cf34062a09552e2db042bc1nc8p1iew0v.png','image/user/2020/07/30/b9a787e13cf34062a09552e2db042bc1nc8p1iew0v.png','855','png',7,4,'2020-07-30 21:42:17','2020-07-30 21:42:18'), (2577,'1-001.png','/www/wwwroot/api.java.crmeb.net/image/user/2020/07/30/ecec299112f14628b13d05e4f201a161pncavgdsto.png','image/user/2020/07/30/ecec299112f14628b13d05e4f201a161pncavgdsto.png','1946','png',7,4,'2020-07-30 21:42:32','2020-07-30 21:42:33'), (2578,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/f3dabd070c1f4d67b7e73e3f018405127t6k0m8ry5.jpg','image/product/2020/07/30/f3dabd070c1f4d67b7e73e3f018405127t6k0m8ry5.jpg','32686','jpeg',1,4,'2020-07-30 21:42:49','2020-07-30 21:42:54'), (2579,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/e6211654465549d5a9738583f75a7615jb5mylyfhv.jpg','image/product/2020/07/30/e6211654465549d5a9738583f75a7615jb5mylyfhv.jpg','32686','jpeg',1,4,'2020-07-30 21:44:31','2020-07-30 21:44:34'), (2580,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/d7574c7ade794d0f88992a67f9f32e25yx7wfz3qhf.jpg','image/product/2020/07/30/d7574c7ade794d0f88992a67f9f32e25yx7wfz3qhf.jpg','32686','jpeg',1,4,'2020-07-30 21:46:12','2020-07-30 21:46:14'), (2581,'1-001.png','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/b3bc090346924212ae1edb460df142c4kntkb9mthz.png','image/product/2020/07/30/b3bc090346924212ae1edb460df142c4kntkb9mthz.png','1946','png',1,4,'2020-07-30 21:46:16','2020-07-30 21:46:19'), (2582,'4-002.png','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/03f378fe55d24f399a40d4f53f8bfcf0latv6rn5wt.png','image/product/2020/07/30/03f378fe55d24f399a40d4f53f8bfcf0latv6rn5wt.png','2016','png',1,4,'2020-07-30 21:46:23','2020-07-30 21:46:24'), (2583,'1-002.png','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/c7b64b6493724745b6e9df6e68a6602dpb5br87vq0.png','image/product/2020/07/30/c7b64b6493724745b6e9df6e68a6602dpb5br87vq0.png','1690','png',1,4,'2020-07-30 21:46:26','2020-07-30 21:46:29'), (2584,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/fa7ade5d677e48df9934628920620e7fthhvldbi0k.jpg','image/product/2020/07/30/fa7ade5d677e48df9934628920620e7fthhvldbi0k.jpg','32686','jpeg',1,4,'2020-07-30 21:52:00','2020-07-30 21:52:04'), (2585,'4-002.png','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/859dc638adbc419eaa2d41e06c08b2c2syi9i23taz.png','image/product/2020/07/30/859dc638adbc419eaa2d41e06c08b2c2syi9i23taz.png','2016','png',1,4,'2020-07-30 21:52:04','2020-07-30 21:52:04'), (2586,'4-002.png','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/fa2014ea487f4aa984d2f369d3fe3715rks9xz8kk2.png','image/product/2020/07/30/fa2014ea487f4aa984d2f369d3fe3715rks9xz8kk2.png','2016','png',1,4,'2020-07-30 21:53:13','2020-07-30 21:53:14'), (2587,'4-002.png','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/5193dedb5f244b39ba73d6d9c16bc8e7amt8vbgwh8.png','image/product/2020/07/30/5193dedb5f244b39ba73d6d9c16bc8e7amt8vbgwh8.png','2016','png',1,4,'2020-07-30 21:53:17','2020-07-30 21:53:19'), (2588,'2-001.png','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/48264cc192ee4d389cc3de9d2139253e01kaj8pmsv.png','image/product/2020/07/30/48264cc192ee4d389cc3de9d2139253e01kaj8pmsv.png','1519','png',1,4,'2020-07-30 21:53:23','2020-07-30 21:53:24'), (2589,'1-001.png','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/8fe318f987a64b75a66dd34caf26891adddnmkbgbu.png','image/product/2020/07/30/8fe318f987a64b75a66dd34caf26891adddnmkbgbu.png','1946','png',1,4,'2020-07-30 21:53:26','2020-07-30 21:53:29'), (2590,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/31/05f6c318d0fa45c7b8ab28b948a6b3f6gse7iu3a1u.jpg','image/product/2020/07/31/05f6c318d0fa45c7b8ab28b948a6b3f6gse7iu3a1u.jpg','32686','jpeg',1,4,'2020-07-31 10:05:26','2020-07-31 10:05:30'), (2591,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/31/e6f8233b6e0b4de98f73c12681dc7518334r8jikey.jpg','image/product/2020/07/31/e6f8233b6e0b4de98f73c12681dc7518334r8jikey.jpg','32686','jpeg',1,4,'2020-07-31 10:05:30','2020-07-31 10:05:35'), (2593,'专项附加扣除信息.xls','/www/wwwroot/api.java.crmeb.net/file/setting/2020/07/31/5d8c4847c4804d31883d8bb07b84a9f4wanpfgr9w2.xls','file/setting/2020/07/31/5d8c4847c4804d31883d8bb07b84a9f4wanpfgr9w2.xls','112640','application/vnd.ms-excel',10,4,'2020-07-31 14:07:14','2020-07-31 14:07:19'), (2594,'专项附加扣除信息.xls','/www/wwwroot/api.java.crmeb.net/file/setting/2020/07/31/08d6760f9a0542aeaad76869747e8728ussh3ytiem.xls','file/setting/2020/07/31/08d6760f9a0542aeaad76869747e8728ussh3ytiem.xls','112640','application/vnd.ms-excel',10,4,'2020-07-31 14:17:34','2020-07-31 14:17:39'), (2595,'专项附加扣除信息.xls','/www/wwwroot/api.java.crmeb.net/file/setting/2020/07/31/168da1e57a5d4071aeaf3e81ed855d1690kfa8o6xs.xls','file/setting/2020/07/31/168da1e57a5d4071aeaf3e81ed855d1690kfa8o6xs.xls','112640','application/vnd.ms-excel',10,4,'2020-07-31 14:18:44','2020-07-31 14:18:49'), (2596,'音频.mp3','/www/wwwroot/api.java.crmeb.net/file/setting/2020/07/31/5d1e210a1c9a4f9d9d5fa72326cd87f9k7v266oyo5.mp3','file/setting/2020/07/31/5d1e210a1c9a4f9d9d5fa72326cd87f9k7v266oyo5.mp3','51936','audio/mpeg',10,4,'2020-07-31 14:21:59','2020-07-31 14:22:04'), (2597,'音频.mp3','/www/wwwroot/api.java.crmeb.net/file/setting/2020/07/31/615ac770f7e34603b71ee6211648a0550l0dcvc8it.mp3','file/setting/2020/07/31/615ac770f7e34603b71ee6211648a0550l0dcvc8it.mp3','51936','audio/mpeg',10,4,'2020-07-31 14:22:45','2020-07-31 14:23:04'), (2598,'音频.mp3','/www/wwwroot/api.java.crmeb.net/file/setting/2020/07/31/bf8c3ffd59664d36bcb3836431fa8132aik7z55177.mp3','file/setting/2020/07/31/bf8c3ffd59664d36bcb3836431fa8132aik7z55177.mp3','51936','audio/mpeg',10,4,'2020-07-31 14:24:14','2020-07-31 14:24:19'), (2599,'专项附加扣除信息.xls','/www/wwwroot/api.java.crmeb.net/file/setting/2020/07/31/931504b437ef41539f26fa64f4310fc6rlhpz074a7.xls','file/setting/2020/07/31/931504b437ef41539f26fa64f4310fc6rlhpz074a7.xls','112640','application/vnd.ms-excel',10,4,'2020-07-31 14:24:18','2020-07-31 14:24:24'), (2600,'音频.mp3','/www/wwwroot/api.java.crmeb.net/file/operation/2020/07/31/4a2f1c2d4f5443ecb2d7aff988ed7016hyczr0wna1.mp3','file/operation/2020/07/31/4a2f1c2d4f5443ecb2d7aff988ed7016hyczr0wna1.mp3','51936','audio/mpeg',10,4,'2020-07-31 16:38:39','2020-07-31 16:38:44'), (2601,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/31/b876a16c445d4529a06aacabede4dd80ehh6qw8rr5.jpg','image/product/2020/07/31/b876a16c445d4529a06aacabede4dd80ehh6qw8rr5.jpg','32686','jpeg',1,4,'2020-07-31 18:08:53','2020-07-31 18:08:56'), (2602,'collection.png','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/31/235b72047a2a4179933ea10444deb6acup7uwkz4qu.png','image/product/2020/07/31/235b72047a2a4179933ea10444deb6acup7uwkz4qu.png','2007','png',1,4,'2020-07-31 18:08:57','2020-07-31 18:09:01'), (2603,'1-001.png','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/31/da80c4fbe82e4b0da8eae63b8df400813us958dsjs.png','image/product/2020/07/31/da80c4fbe82e4b0da8eae63b8df400813us958dsjs.png','1946','png',1,4,'2020-07-31 18:09:01','2020-07-31 18:09:06'), (2604,'4-002.png','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/31/c7a37cc7e6dc49ccacd560171750278eifawxahxcw.png','image/product/2020/07/31/c7a37cc7e6dc49ccacd560171750278eifawxahxcw.png','2016','png',1,4,'2020-07-31 18:09:05','2020-07-31 18:09:06'), (2605,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/07/31/0747f29b67b542c898cf5b8aa4b73cb66xxlai7d8s.jpg','image/product/2020/07/31/0747f29b67b542c898cf5b8aa4b73cb66xxlai7d8s.jpg','32686','jpeg',1,4,'2020-07-31 18:12:55','2020-07-31 18:12:56'), (2606,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/08/01/ea56a5189f8b449dbfa5b7b16b6258farj0a3dugdx.jpg','image/user/2020/08/01/ea56a5189f8b449dbfa5b7b16b6258farj0a3dugdx.jpg','32686','jpeg',7,4,'2020-08-01 15:32:12','2020-08-01 15:32:13'), (2607,'bargainBg.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/08/01/1bd445c41a4444248f0f1ba71adc6e870bndk3upp0.jpg','image/user/2020/08/01/1bd445c41a4444248f0f1ba71adc6e870bndk3upp0.jpg','32686','jpeg',7,4,'2020-08-01 15:32:51','2020-08-01 15:32:53'), (2616,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/05/602b64c11cac43599d2ef37477790011fyslwo6tyx.jpg','image/product/2020/08/05/602b64c11cac43599d2ef37477790011fyslwo6tyx.jpg','129708','jpeg',1,4,'2020-08-05 11:09:07','2020-08-05 11:09:10'), (2617,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/05/f4187e4e44d840ab9cd31f4fcf6fd60b1wgkisjjpq.jpg','image/product/2020/08/05/f4187e4e44d840ab9cd31f4fcf6fd60b1wgkisjjpq.jpg','129708','jpeg',1,4,'2020-08-05 11:16:04','2020-08-05 11:16:05'), (2618,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/05/7196caa500684e8297be08e8d5e8ee6730ffniwko2.jpg','image/product/2020/08/05/7196caa500684e8297be08e8d5e8ee6730ffniwko2.jpg','129708','jpeg',1,4,'2020-08-05 11:22:44','2020-08-05 11:22:45'), (2619,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/05/a2df668fde174c6caa21e6242507929bc34nijh6mj.jpg','image/product/2020/08/05/a2df668fde174c6caa21e6242507929bc34nijh6mj.jpg','129708','jpeg',1,4,'2020-08-05 12:13:00','2020-08-05 12:13:01'), (2620,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/05/1155fbb519d24d0d978013b5c311bbdf7gi6nfrs8o.jpg','image/product/2020/08/05/1155fbb519d24d0d978013b5c311bbdf7gi6nfrs8o.jpg','129708','jpeg',1,4,'2020-08-05 14:07:56','2020-08-05 14:07:58'), (2621,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/05/d7efc3e5e8334f9bb1951629a342c763lsrlw3v61l.jpg','image/product/2020/08/05/d7efc3e5e8334f9bb1951629a342c763lsrlw3v61l.jpg','129708','jpeg',1,4,'2020-08-05 14:11:52','2020-08-05 14:11:53'), (2622,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/05/dc285f162b854c47a4ebaa52861329baldhxij4vae.jpg','image/product/2020/08/05/dc285f162b854c47a4ebaa52861329baldhxij4vae.jpg','129708','jpeg',1,4,'2020-08-05 14:27:47','2020-08-05 14:27:53'), (2623,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/05/d317737572164830aeb0ed0202a66e6fgs13g7ywi6.jpg','image/product/2020/08/05/d317737572164830aeb0ed0202a66e6fgs13g7ywi6.jpg','129708','jpeg',1,4,'2020-08-05 14:29:29','2020-08-05 14:29:32'), (2624,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/05/61fcf4c425704614b5638987f71d59e8mavejdob0j.jpg','image/product/2020/08/05/61fcf4c425704614b5638987f71d59e8mavejdob0j.jpg','129708','jpeg',1,4,'2020-08-05 14:29:48','2020-08-05 14:29:52'), (2625,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/05/4d12b266f1ad4d3fbee7a6aa540667044vefofqx9v.jpg','image/product/2020/08/05/4d12b266f1ad4d3fbee7a6aa540667044vefofqx9v.jpg','129708','jpeg',1,4,'2020-08-05 14:33:07','2020-08-05 14:33:13'), (2626,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/05/d6b20bd0eff54345b62fdc4ac24c0aa93kzmis0m71.jpg','image/product/2020/08/05/d6b20bd0eff54345b62fdc4ac24c0aa93kzmis0m71.jpg','129708','jpeg',1,4,'2020-08-05 14:34:13','2020-08-05 14:34:18'), (2627,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/05/451696813ae94539b93095fd9a88afe7xsb9b39yvi.jpg','image/product/2020/08/05/451696813ae94539b93095fd9a88afe7xsb9b39yvi.jpg','129708','jpeg',1,4,'2020-08-05 14:37:40','2020-08-05 14:37:43'), (2628,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/05/067233ff4e7740379e3d2e66b4076f41m0ablhibtf.jpg','image/product/2020/08/05/067233ff4e7740379e3d2e66b4076f41m0ablhibtf.jpg','129708','jpeg',1,4,'2020-08-05 18:33:48','2020-08-05 18:33:51'), (2629,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/cc2c512ddaa74ba9b7368ec734d18694sspcx0or0c.jpg','image/product/2020/08/06/cc2c512ddaa74ba9b7368ec734d18694sspcx0or0c.jpg','129708','jpeg',1,4,'2020-08-06 09:40:20','2020-08-06 09:40:21'), (2630,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/e1104caafd294e959cab4990c19fa11fe09q7u65z4.jpg','image/product/2020/08/06/e1104caafd294e959cab4990c19fa11fe09q7u65z4.jpg','129708','jpeg',1,4,'2020-08-06 09:42:20','2020-08-06 09:42:21'), (2631,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/43d6e54435b44325960f91343e8e9ba9on0dd7xwu5.jpg','image/product/2020/08/06/43d6e54435b44325960f91343e8e9ba9on0dd7xwu5.jpg','129708','jpeg',1,4,'2020-08-06 09:42:59','2020-08-06 09:43:01'), (2632,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/a05f57749a9f4699b85013c7e7e9e461ncx0sz6bvq.jpg','image/product/2020/08/06/a05f57749a9f4699b85013c7e7e9e461ncx0sz6bvq.jpg','129708','jpeg',1,4,'2020-08-06 09:43:12','2020-08-06 09:43:16'), (2633,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/a82e05657faf442499cbc0f2f9f0c225aq2cqzsyfv.jpg','image/product/2020/08/06/a82e05657faf442499cbc0f2f9f0c225aq2cqzsyfv.jpg','129708','jpeg',1,4,'2020-08-06 10:40:06','2020-08-06 10:40:12'), (2634,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/88025a2a6f534f249a7777b4b2d6c27cd59y585qrt.jpg','image/product/2020/08/06/88025a2a6f534f249a7777b4b2d6c27cd59y585qrt.jpg','129708','jpeg',1,4,'2020-08-06 10:54:24','2020-08-06 10:54:28'), (2635,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/31e65de82bdd48d1b77557280dcbefffo7suckdxj8.jpg','image/product/2020/08/06/31e65de82bdd48d1b77557280dcbefffo7suckdxj8.jpg','129708','jpeg',1,4,'2020-08-06 10:55:14','2020-08-06 10:55:18'), (2636,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/ce5f01ab93a147078f39a38bc4d0b4f07jzaa3p4hx.jpg','image/product/2020/08/06/ce5f01ab93a147078f39a38bc4d0b4f07jzaa3p4hx.jpg','129708','jpeg',1,4,'2020-08-06 10:55:17','2020-08-06 10:55:18'), (2637,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/64a4ca35c3a041be85a42594d68a308bgqmn0qx332.jpg','image/product/2020/08/06/64a4ca35c3a041be85a42594d68a308bgqmn0qx332.jpg','129708','jpeg',1,4,'2020-08-06 10:55:20','2020-08-06 10:55:23'), (2638,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/f228114ab1de4c42a1f3c0df60670e42wlct2x22l7.jpg','image/product/2020/08/06/f228114ab1de4c42a1f3c0df60670e42wlct2x22l7.jpg','129708','jpeg',1,4,'2020-08-06 11:16:35','2020-08-06 11:16:39'), (2639,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/920e926ce14e4aa2b22eb831b80d14f97hf5srhcq1.jpg','image/product/2020/08/06/920e926ce14e4aa2b22eb831b80d14f97hf5srhcq1.jpg','129708','jpeg',1,4,'2020-08-06 11:17:19','2020-08-06 11:17:24'), (2640,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/0115362349cf44c0acd7ed3e3933c238g4aglupaow.jpg','image/product/2020/08/06/0115362349cf44c0acd7ed3e3933c238g4aglupaow.jpg','129708','jpeg',1,4,'2020-08-06 11:23:27','2020-08-06 11:23:29'), (2641,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/1350c844f5b44f90a915839553638040272m8hcga6.jpg','image/product/2020/08/06/1350c844f5b44f90a915839553638040272m8hcga6.jpg','129708','jpeg',1,4,'2020-08-06 11:23:31','2020-08-06 11:23:34'), (2642,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/c1c53279e3e84e489c8f524709829be2iazzmjhf1q.jpg','image/product/2020/08/06/c1c53279e3e84e489c8f524709829be2iazzmjhf1q.jpg','129708','jpeg',1,4,'2020-08-06 11:29:57','2020-08-06 11:30:02'), (2643,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/fc0ff14b5ed841ad907d33078f8b485clkhcz1hyth.jpg','image/product/2020/08/06/fc0ff14b5ed841ad907d33078f8b485clkhcz1hyth.jpg','129708','jpeg',1,4,'2020-08-06 11:41:01','2020-08-06 11:41:02'), (2644,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/fcba34f988d6402fa14bf910dac6c8929kjmwux3fw.jpg','image/product/2020/08/06/fcba34f988d6402fa14bf910dac6c8929kjmwux3fw.jpg','129708','jpeg',1,4,'2020-08-06 11:45:15','2020-08-06 11:45:18'), (2645,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/b6a503f3a2564628b0b33716f66696b15bb04p5nwk.jpg','image/product/2020/08/06/b6a503f3a2564628b0b33716f66696b15bb04p5nwk.jpg','129708','jpeg',1,4,'2020-08-06 11:45:18','2020-08-06 11:45:23'), (2646,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/69ec9499804a459cb596950095c1f8237v21s0v7f5.jpg','image/product/2020/08/06/69ec9499804a459cb596950095c1f8237v21s0v7f5.jpg','129708','jpeg',1,4,'2020-08-06 11:46:02','2020-08-06 11:46:03'), (2647,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/c23fc20fe47948cc9a4e201b6e1ce527epb22cgd25.jpg','image/product/2020/08/06/c23fc20fe47948cc9a4e201b6e1ce527epb22cgd25.jpg','129708','jpeg',1,4,'2020-08-06 11:46:22','2020-08-06 11:46:23'), (2648,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/fcf6e0e846da4b6a9e1cf405312248b87grdk5klwu.jpg','image/product/2020/08/06/fcf6e0e846da4b6a9e1cf405312248b87grdk5klwu.jpg','129708','jpeg',1,4,'2020-08-06 11:51:09','2020-08-06 11:51:13'), (2649,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/3f9bbd4fba8047f2992dd4bc8223bfcf1jb2urehce.jpg','image/product/2020/08/06/3f9bbd4fba8047f2992dd4bc8223bfcf1jb2urehce.jpg','129708','jpeg',1,4,'2020-08-06 11:51:13','2020-08-06 11:51:18'), (2650,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/78531b8c80444e16bd40fca43ce1f79497ouuhstjm.jpg','image/product/2020/08/06/78531b8c80444e16bd40fca43ce1f79497ouuhstjm.jpg','129708','jpeg',1,4,'2020-08-06 11:57:55','2020-08-06 11:57:58'), (2651,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/8ebe9c4476ca474c84bac6e775d7081et9x3earb0s.jpg','image/product/2020/08/06/8ebe9c4476ca474c84bac6e775d7081et9x3earb0s.jpg','129708','jpeg',1,4,'2020-08-06 11:58:04','2020-08-06 11:58:08'), (2652,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/c292091c0ed24f9a96948ddd008496f9jihb0vlhtv.jpg','image/product/2020/08/06/c292091c0ed24f9a96948ddd008496f9jihb0vlhtv.jpg','129708','jpeg',1,4,'2020-08-06 11:58:36','2020-08-06 11:58:38'), (2653,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/7533705013924911be2ac38771f518600utgp5a2rq.jpg','image/product/2020/08/06/7533705013924911be2ac38771f518600utgp5a2rq.jpg','129708','jpeg',1,4,'2020-08-06 11:58:39','2020-08-06 11:58:43'), (2654,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/c09cd94a0f0f43228d00aebd315986b8jp4xlkdes7.jpg','image/product/2020/08/06/c09cd94a0f0f43228d00aebd315986b8jp4xlkdes7.jpg','129708','jpeg',1,4,'2020-08-06 11:59:17','2020-08-06 11:59:18'), (2655,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/06/52db0a94ffc54c96b00c069bcbd4c667qw4cxkrodw.jpg','image/product/2020/08/06/52db0a94ffc54c96b00c069bcbd4c667qw4cxkrodw.jpg','129708','jpeg',1,4,'2020-08-06 11:59:21','2020-08-06 11:59:23'), (2656,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/08/06/75d6fbd78ad946dea6ef618537187deaua6bis2xop.jpg','image/user/2020/08/06/75d6fbd78ad946dea6ef618537187deaua6bis2xop.jpg','129708','jpeg',7,4,'2020-08-06 12:21:36','2020-08-06 12:22:01'), (2657,'del.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/08/06/6a7bb61a620e4f8ca09d4c4b1e44f63fex7evbk3pb.jpg','image/user/2020/08/06/6a7bb61a620e4f8ca09d4c4b1e44f63fex7evbk3pb.jpg','129708','jpeg',7,4,'2020-08-06 12:24:17','2020-08-06 12:24:21'), (2658,'shouquan.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/08/06/8f8621d9eee94d61a22e6a965fb22aeeicsq4tm3nk.jpg','image/user/2020/08/06/8f8621d9eee94d61a22e6a965fb22aeeicsq4tm3nk.jpg','28343','jpeg',7,4,'2020-08-06 12:27:29','2020-08-06 12:27:31'), (2659,'bg.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/08/06/40e55dc54be34689b193f03d12012f45u4516365nb.jpg','image/user/2020/08/06/40e55dc54be34689b193f03d12012f45u4516365nb.jpg','1026973','jpeg',7,4,'2020-08-06 12:28:19','2020-08-06 12:28:23'), (2660,'sw.jpg','/www/wwwroot/api.java.crmeb.net/image/product/2020/08/07/daebdb3ed7ad4de1be71012770c998632kb0uhnq4a.jpg','image/product/2020/08/07/daebdb3ed7ad4de1be71012770c998632kb0uhnq4a.jpg','157681','jpeg',1,4,'2020-08-07 09:42:44','2020-08-07 09:42:46'), (2662,'brass.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/83b3f92d02ae45e4923fd22026db6690tdslirofqg.jpg','image/content/2020/08/10/83b3f92d02ae45e4923fd22026db6690tdslirofqg.jpg','2216','jpeg',185,4,'2020-08-10 11:51:31','2020-08-10 11:53:18'), (2663,'coupon-window.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/b2b711259eb748de9c5421e8cf04e06ej36mcf4nwx.png','image/content/2020/08/10/b2b711259eb748de9c5421e8cf04e06ej36mcf4nwx.png','15663','png',0,4,'2020-08-10 12:17:54','2020-08-10 12:17:57'), (2664,'activity02.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/af1bf707de954a199def2bcb428d77c16y4t2u1m0k.jpg','image/content/2020/08/10/af1bf707de954a199def2bcb428d77c16y4t2u1m0k.jpg','28257','jpeg',0,4,'2020-08-10 12:30:43','2020-08-10 12:30:47'), (2665,'assemble.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/0db7b9d65a844ccd9fb23a8dbcb5ddc502fdrhc6t8.jpg','image/content/2020/08/10/0db7b9d65a844ccd9fb23a8dbcb5ddc502fdrhc6t8.jpg','29549','jpeg',0,4,'2020-08-10 14:09:54','2020-08-10 14:09:55'), (2666,'assemble.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/618f0db69d7640e4bbe2d34514833f9831hwer8pbk.jpg','image/content/2020/08/10/618f0db69d7640e4bbe2d34514833f9831hwer8pbk.jpg','29549','jpeg',0,4,'2020-08-10 14:11:01','2020-08-10 14:11:05'), (2667,'close.gif','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/7ae66c62da7a4030bbd70fa5b29b3e5ab8ld54lj9n.gif','image/content/2020/08/10/7ae66c62da7a4030bbd70fa5b29b3e5ab8ld54lj9n.gif','15547','gif',0,4,'2020-08-10 14:18:38','2020-08-10 14:18:40'), (2668,'bronze.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/86af72fcc6124baea9da2ecbd50c21a5kzq7l2vd0p.png','image/content/2020/08/10/86af72fcc6124baea9da2ecbd50c21a5kzq7l2vd0p.png','7900','png',0,4,'2020-08-10 14:19:34','2020-08-10 14:19:35'), (2669,'cut-bg.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/36d2e3a9e6074067997fc8197dbb294fstg8wk3lui.png','image/content/2020/08/10/36d2e3a9e6074067997fc8197dbb294fstg8wk3lui.png','77520','png',0,4,'2020-08-10 14:19:46','2020-08-10 14:19:50'), (2670,'gift.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/814d9f0beba040d2904079d7b99fc586el2l3odbj3.png','image/content/2020/08/10/814d9f0beba040d2904079d7b99fc586el2l3odbj3.png','5522','png',0,4,'2020-08-10 14:38:06','2020-08-10 14:38:11'), (2671,'cut1.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/730a4008ac2b4cc79e55b2276d139c41ag77fpt3w7.png','image/content/2020/08/10/730a4008ac2b4cc79e55b2276d139c41ag77fpt3w7.png','42010','png',0,4,'2020-08-10 14:41:49','2020-08-10 14:41:51'), (2672,'logo2.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','image/content/2020/08/10/e9aa3ba1e4ee4deea1b7def35b4ce79f5rke3ui3w1.png','24056','png',0,4,'2020-08-10 14:45:35','2020-08-10 14:45:36'), (2673,'coupon01.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/490a9b25eb184c5a9b2d497d6dde58d0lis9e7sran.png','image/content/2020/08/10/490a9b25eb184c5a9b2d497d6dde58d0lis9e7sran.png','19357','png',0,4,'2020-08-10 14:46:01','2020-08-10 14:46:06'), (2674,'integralbg.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/3fc403bcde39410b8d993796ad2847bf7mz1nt5q8e.jpg','image/content/2020/08/10/3fc403bcde39410b8d993796ad2847bf7mz1nt5q8e.jpg','10909','jpeg',0,4,'2020-08-10 14:46:29','2020-08-10 14:46:31'), (2675,'coupon02.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/9a12252ddc7243278a3a58a88d1718fbltp4w2lg5g.png','image/content/2020/08/10/9a12252ddc7243278a3a58a88d1718fbltp4w2lg5g.png','24815','png',0,4,'2020-08-10 14:47:57','2020-08-10 14:48:01'), (2676,'diamonds.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/ad3bd819f1e84caeabbb858d0f1cef8eanuapqav4n.jpg','image/content/2020/08/10/ad3bd819f1e84caeabbb858d0f1cef8eanuapqav4n.jpg','2508','jpeg',0,4,'2020-08-10 14:48:38','2020-08-10 14:48:41'), (2677,'collection.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/8ce87292dbd1472a9c0189612750a698mn9oqrqfzi.png','image/content/2020/08/10/8ce87292dbd1472a9c0189612750a698mn9oqrqfzi.png','2007','png',0,4,'2020-08-10 14:48:57','2020-08-10 14:49:01'), (2678,'examine.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/30003ce63ff8423286448c2726e7c8ffm9g4fipvvc.png','image/content/2020/08/10/30003ce63ff8423286448c2726e7c8ffm9g4fipvvc.png','8970','png',0,4,'2020-08-10 14:49:57','2020-08-10 14:50:01'), (2679,'timg.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/10/1938287114874149a87250f35c7c9e4f8dlna48p66.jpg','image/content/2020/08/10/1938287114874149a87250f35c7c9e4f8dlna48p66.jpg','26852','jpeg',185,4,'2020-08-10 16:06:38','2020-08-10 16:10:26'), (2680,'音频.mp3','/www/wwwroot/api.java.crmeb.net/file/operation/2020/08/10/1718ca19d8f34524874d4ab63806045dingd3x9rn5.mp3','file/operation/2020/08/10/1718ca19d8f34524874d4ab63806045dingd3x9rn5.mp3','51936','audio/mpeg',10,4,'2020-08-10 20:47:46','2020-08-10 20:47:48'), (2681,'timg.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/11/a5338e2b05d3448d88c7f67661b28f5350pzho9p1i.jpg','image/content/2020/08/11/a5338e2b05d3448d88c7f67661b28f5350pzho9p1i.jpg','26852','jpeg',0,4,'2020-08-11 10:01:27','2020-08-11 10:01:28'), (2682,'11535099rueep7urld4zzp.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/11/f5aca226e3474a7fbaf1cd6843453090jmzxfdb941.jpg','image/content/2020/08/11/f5aca226e3474a7fbaf1cd6843453090jmzxfdb941.jpg','435312','jpeg',0,4,'2020-08-11 10:01:31','2020-08-11 10:01:33'), (2683,'16c49584ea6bfc5f.jpeg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','59718','jpeg',0,4,'2020-08-11 10:01:34','2020-08-11 10:01:38'), (2684,'11535099rueep7urld4zzp.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/11/3088d9c5e9af4eaaa5f9ccad51d46f3buvgn36ncpj.jpg','image/content/2020/08/11/3088d9c5e9af4eaaa5f9ccad51d46f3buvgn36ncpj.jpg','435312','jpeg',0,4,'2020-08-11 10:01:46','2020-08-11 10:01:48'), (2685,'timg.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/11/d9e18566775f4ca0a9d64bc986ad777ah43lkqg6aq.jpg','image/content/2020/08/11/d9e18566775f4ca0a9d64bc986ad777ah43lkqg6aq.jpg','26852','jpeg',0,4,'2020-08-11 10:03:10','2020-08-11 10:03:13'), (2686,'刘松林.png','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/08/11/e847ca4490c84aa38a9387dce2932d7ecetfdhu6dz.png','image/wechat/2020/08/11/e847ca4490c84aa38a9387dce2932d7ecetfdhu6dz.png','199580','png',8,4,'2020-08-11 11:36:12','2020-08-11 11:36:13'), (2687,'2e429fce8d223991bf32f4eba85d0d4.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/08/11/8fb1aa29e887451785e825d37c75955cs2cir7pimp.jpg','image/wechat/2020/08/11/8fb1aa29e887451785e825d37c75955cs2cir7pimp.jpg','46172','jpeg',8,4,'2020-08-11 11:37:38','2020-08-11 11:37:43'), (2688,'刘松林.png','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/08/11/7e6be2620c624ee78b7200917d5686bbpgzlx8sz7s.png','image/wechat/2020/08/11/7e6be2620c624ee78b7200917d5686bbpgzlx8sz7s.png','199580','png',8,4,'2020-08-11 11:37:59','2020-08-11 11:38:03'), (2689,'2e429fce8d223991bf32f4eba85d0d4.jpg','/www/wwwroot/api.java.crmeb.net/image/wechat/2020/08/11/9c2b2a3e1d924c90bdf20663a9cec202o2numdxt72.jpg','image/wechat/2020/08/11/9c2b2a3e1d924c90bdf20663a9cec202o2numdxt72.jpg','46172','jpeg',8,4,'2020-08-11 11:38:59','2020-08-11 11:39:03'), (2690,'20C860A0-4659-4AC0-9E2A-966D69DD3F23.jpeg','/www/wwwroot/api.java.crmeb.net/image/user/2020/08/11/ee6640b1c4d14e43909883268c8cfb267pyx0y682l.jpeg','image/user/2020/08/11/ee6640b1c4d14e43909883268c8cfb267pyx0y682l.jpeg','55156','jpeg',7,4,'2020-08-11 12:07:48','2020-08-11 12:07:53'), (2691,'蛋糕烘培@2x.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/11/c79e9cda47db47748da64fd5bd4d1a30l2wpoycstu.png','image/store/2020/08/11/c79e9cda47db47748da64fd5bd4d1a30l2wpoycstu.png','28559','png',0,4,'2020-08-11 14:47:07','2020-08-11 14:47:08'), (2692,'99_avatar_max.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/11/7c9f696b191e49f2ad935fa4f63ea1d3uq9j4ff4d4.jpg','image/content/2020/08/11/7c9f696b191e49f2ad935fa4f63ea1d3uq9j4ff4d4.jpg','3073','jpeg',0,4,'2020-08-11 17:19:47','2020-08-11 17:19:51'), (2693,'GTR1.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/12/34eec317469342ab879cbe6d3b6cfbe3enpb6q7l77.jpg','image/content/2020/08/12/34eec317469342ab879cbe6d3b6cfbe3enpb6q7l77.jpg','125278','jpeg',241,4,'2020-08-12 11:18:50','2020-08-12 11:18:51'), (2694,'O1CN01ko9eCe1S29CqDxWd4_!!890482188-0-lubanu-s.jpg_430x430q90.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/12/13813b1c58914aeda67d8a4ebc4f8aef21sje7kyiy.jpg','image/content/2020/08/12/13813b1c58914aeda67d8a4ebc4f8aef21sje7kyiy.jpg','29954','jpeg',0,4,'2020-08-12 14:20:30','2020-08-12 14:20:32'), (2695,'TIM截图20200812143600.png','/www/wwwroot/api.java.crmeb.net/image/setting/2020/08/12/71f30b58a2da4fc59e20e28cb6c36299v8j7iqamdq.png','image/setting/2020/08/12/71f30b58a2da4fc59e20e28cb6c36299v8j7iqamdq.png','511269','png',0,4,'2020-08-12 14:36:19','2020-08-12 14:36:22'), (2696,'O1CN01ko9eCe1S29CqDxWd4_!!890482188-0-lubanu-s.jpg_430x430q90.jpg','/www/wwwroot/api.java.crmeb.net/image/user/2020/08/12/5664282626eb43f6a3ff13e61c810689rxgpb0h23h.jpg','image/user/2020/08/12/5664282626eb43f6a3ff13e61c810689rxgpb0h23h.jpg','29954','jpeg',7,4,'2020-08-12 16:11:28','2020-08-12 16:11:32'), (2697,'手机数码@2x.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/51f0328634934883a994abb33173129fgcar4l6l8l.png','image/maintain/2020/08/13/51f0328634934883a994abb33173129fgcar4l6l8l.png','18548','png',0,4,'2020-08-13 11:09:08','2020-08-13 11:09:13'), (2698,'会员中心2.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/481e308eeabf4910823b3558ccc19403mv8yjufemd.png','image/maintain/2020/08/13/481e308eeabf4910823b3558ccc19403mv8yjufemd.png','2099','png',268,4,'2020-08-13 11:16:33','2020-08-13 11:16:38'), (2699,'我的推广2.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/f09a614eca0546748e5e71b565e8d662kxkezi9bbv.png','image/maintain/2020/08/13/f09a614eca0546748e5e71b565e8d662kxkezi9bbv.png','2025','png',268,4,'2020-08-13 11:16:58','2020-08-13 11:17:03'), (2700,'我的账户2.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/9e9c5129966244b78cfb68778fbd7a81k6stba15mw.png','image/maintain/2020/08/13/9e9c5129966244b78cfb68778fbd7a81k6stba15mw.png','2546','png',268,4,'2020-08-13 11:17:14','2020-08-13 11:17:18'), (2701,'地址信息2.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/8529e290c5874ddd82fcf7b104955949izoulykd53.png','image/maintain/2020/08/13/8529e290c5874ddd82fcf7b104955949izoulykd53.png','2228','png',268,4,'2020-08-13 11:17:37','2020-08-13 11:17:38'), (2702,'我的收藏2.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/278a0afed5af4f3bbdd4924eff96a6adqa5k51i1cb.png','image/maintain/2020/08/13/278a0afed5af4f3bbdd4924eff96a6adqa5k51i1cb.png','1917','png',268,4,'2020-08-13 11:17:50','2020-08-13 11:17:53'), (2703,'优惠券2.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/5f56e229217a4c38b3da0e3a53ecc667o478oy5v4v.png','image/maintain/2020/08/13/5f56e229217a4c38b3da0e3a53ecc667o478oy5v4v.png','2768','png',268,4,'2020-08-13 11:18:14','2020-08-13 11:18:18'), (2704,'商品分类.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/91379d2939284e5db2a9cc0915fccf4a6wru3vj2q3.png','image/maintain/2020/08/13/91379d2939284e5db2a9cc0915fccf4a6wru3vj2q3.png','7397','png',268,4,'2020-08-13 11:27:27','2020-08-13 11:27:28'), (2705,'领优惠券.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/e62f702add5043c6af73a95becca0985s0nebb3f3d.png','image/maintain/2020/08/13/e62f702add5043c6af73a95becca0985s0nebb3f3d.png','7662','png',268,4,'2020-08-13 11:27:43','2020-08-13 11:27:44'), (2706,'行业资讯.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/6292cc8c10564acbbb7d43eed26ed8798ij2deo3sk.png','image/maintain/2020/08/13/6292cc8c10564acbbb7d43eed26ed8798ij2deo3sk.png','7161','png',268,4,'2020-08-13 11:27:59','2020-08-13 11:28:04'), (2707,'我要签到.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/d4003b6bdbbb4ec2bf93c5f7a6e9f6383fwxssjlwp.png','image/maintain/2020/08/13/d4003b6bdbbb4ec2bf93c5f7a6e9f6383fwxssjlwp.png','6045','png',268,4,'2020-08-13 11:28:22','2020-08-13 11:28:24'), (2708,'收藏商品.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/50bed67b30774124a07b8003247243f059fmipd1zd.png','image/maintain/2020/08/13/50bed67b30774124a07b8003247243f059fmipd1zd.png','7900','png',268,4,'2020-08-13 11:28:36','2020-08-13 11:28:39'), (2709,'拼团活动.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/5f71607a688940eea181dcd1ed6e9f51m1icpzgorz.png','image/maintain/2020/08/13/5f71607a688940eea181dcd1ed6e9f51m1icpzgorz.png','7052','png',268,4,'2020-08-13 11:28:51','2020-08-13 11:28:54'), (2710,'收藏商品.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/2f2a3420ee0945fdb05614691f7beda8oiax27m3yb.png','image/maintain/2020/08/13/2f2a3420ee0945fdb05614691f7beda8oiax27m3yb.png','9480','png',268,4,'2020-08-13 11:30:47','2020-08-13 11:30:49'), (2711,'商品分类.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/af3304699927443db884fe468295cee8oss2xgnb4n.png','image/maintain/2020/08/13/af3304699927443db884fe468295cee8oss2xgnb4n.png','7696','png',268,4,'2020-08-13 11:31:30','2020-08-13 11:31:34'), (2713,'4973d068f6e0b5f583a06ec0abf268d6.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/64c5c39bb6e24fec8fa12ca9baa4a4aa6tfkdi5v27.png','image/maintain/2020/08/13/64c5c39bb6e24fec8fa12ca9baa4a4aa6tfkdi5v27.png','93656','png',270,4,'2020-08-13 11:36:20','2020-08-13 11:36:24'), (2715,'bd39f0eec456f4ad41eae62ae8415e72.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/9c42291970364fcb8d7fdbdaf96900152rpyexrh3s.png','image/maintain/2020/08/13/9c42291970364fcb8d7fdbdaf96900152rpyexrh3s.png','59103','png',270,4,'2020-08-13 11:38:13','2020-08-13 11:38:14'), (2716,'7a3b81f127a970c8afbd57fbd42a9093.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/6c7b8a2777a743bcac0b4d11465384bejp8n19peeg.png','image/maintain/2020/08/13/6c7b8a2777a743bcac0b4d11465384bejp8n19peeg.png','69336','png',270,4,'2020-08-13 11:39:07','2020-08-13 11:39:09'), (2717,'bc21aec604a61a14d8dc4f4e431de38b.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/e6344b2025ac43e2ad95f83b19b12060s0jfs4vpqe.png','image/maintain/2020/08/13/e6344b2025ac43e2ad95f83b19b12060s0jfs4vpqe.png','48754','png',270,4,'2020-08-13 11:40:19','2020-08-13 11:40:24'), (2718,'crmeb2.png','/www/wwwroot/api.java.crmeb.net/image/operation/2020/08/13/940ffc48190b4efe96c70a7dbeeac428f4qzmfn2le.png','image/operation/2020/08/13/940ffc48190b4efe96c70a7dbeeac428f4qzmfn2le.png','2130','png',268,4,'2020-08-13 11:42:02','2020-08-13 11:42:04'), (2719,'timg.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/88dfb08327f7470d8285613aa1bd9ab3xk2qzolbad.png','image/store/2020/08/13/88dfb08327f7470d8285613aa1bd9ab3xk2qzolbad.png','25213','png',271,4,'2020-08-13 11:46:36','2020-08-13 11:46:40'), (2720,'a8dc13b077393812312369.jpg','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/2e0e4ffe26d045968fe9e6082e7221b5eohjjkkg0a.jpg','image/maintain/2020/08/13/2e0e4ffe26d045968fe9e6082e7221b5eohjjkkg0a.jpg','161856','jpeg',270,4,'2020-08-13 12:02:25','2020-08-13 12:02:31'), (2721,'ab52cbe74c66389513fbd09f43402fa6.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/15e36da884e44f91939a92468d0c848fxftnm6thvc.png','image/store/2020/08/13/15e36da884e44f91939a92468d0c848fxftnm6thvc.png','100975','png',271,4,'2020-08-13 12:05:20','2020-08-13 12:05:21'), (2722,'8d94b18517519b061d9ba2d2871a5d77.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/0c1fb92238ce4f67b9c2cb03c9c932c8a28451t0g7.png','image/store/2020/08/13/0c1fb92238ce4f67b9c2cb03c9c932c8a28451t0g7.png','35187','png',271,4,'2020-08-13 12:06:45','2020-08-13 12:06:46'), (2723,'c549ea2541c613e04f64279ea2278e4e.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/6f722314cefa418fada5eab9e09bf86aqutumxihsx.png','image/store/2020/08/13/6f722314cefa418fada5eab9e09bf86aqutumxihsx.png','43349','png',271,4,'2020-08-13 12:07:44','2020-08-13 12:07:47'), (2724,'bc70cce396a1b174da579dab2de85959.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/df0f8dfb34c1424abde8737039c5f58b1acdgq3h7w.png','image/store/2020/08/13/df0f8dfb34c1424abde8737039c5f58b1acdgq3h7w.png','73229','png',271,4,'2020-08-13 12:11:22','2020-08-13 12:11:27'), (2725,'0743a6a9f13fa6fa85d4c6f5d933d04f.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/cb007f931afb4386bfff7f80b8971203c5qc2k1j1n.png','image/store/2020/08/13/cb007f931afb4386bfff7f80b8971203c5qc2k1j1n.png','30795','png',271,4,'2020-08-13 12:12:35','2020-08-13 12:12:37'), (2726,'0743a6a9f13fa6fa85d4c6f5d933d04f.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/b2328b9abf12499ea9941cefa0880ae43cqywtyhjp.png','image/store/2020/08/13/b2328b9abf12499ea9941cefa0880ae43cqywtyhjp.png','30795','png',271,4,'2020-08-13 12:13:54','2020-08-13 12:13:57'), (2727,'8041372e2280a8b6ff6f7df23331021a.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/306ee4383bbf460494e8b3368782a076ugnezzb362.png','image/store/2020/08/13/306ee4383bbf460494e8b3368782a076ugnezzb362.png','67134','png',271,4,'2020-08-13 12:14:32','2020-08-13 12:14:37'), (2728,'logo111.png','/www/wwwroot/api.java.crmeb.net/image/operation/2020/08/13/cb5f8da9f32449f6a21579ef86bad2d3woxeu3nilt.png','image/operation/2020/08/13/cb5f8da9f32449f6a21579ef86bad2d3woxeu3nilt.png','2718','png',0,4,'2020-08-13 12:16:48','2020-08-13 12:16:52'), (2729,'大衣图2.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/13/1d309020b173440a818fd3f76d58030fk7xdl9bdpz.png','image/content/2020/08/13/1d309020b173440a818fd3f76d58030fk7xdl9bdpz.png','129695','png',0,4,'2020-08-13 12:28:09','2020-08-13 12:28:13'), (2730,'大衣图1.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/13/9ad70272e4094fb9993a849b89a7b4afcorpd807b5.png','image/content/2020/08/13/9ad70272e4094fb9993a849b89a7b4afcorpd807b5.png','66795','png',0,4,'2020-08-13 12:28:20','2020-08-13 12:28:23'), (2732,'988194d4d765f4.jpg','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/8673d8f7d062441c8feea8afe83ae4445q333yr9bx.jpg','image/maintain/2020/08/13/8673d8f7d062441c8feea8afe83ae4445q333yr9bx.jpg','60045','jpeg',270,4,'2020-08-13 12:37:45','2020-08-13 12:37:50'), (2734,'65f4.jpg','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/f2fb85fba7bd4078adb252014d3e8896e48sbh2gwr.jpg','image/maintain/2020/08/13/f2fb85fba7bd4078adb252014d3e8896e48sbh2gwr.jpg','103815','jpeg',270,4,'2020-08-13 12:41:12','2020-08-13 12:41:15'), (2735,'d65329e18f2061887f.jpg','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/38470df90d8c436fade672478461e3732l8z7ernvh.jpg','image/maintain/2020/08/13/38470df90d8c436fade672478461e3732l8z7ernvh.jpg','80438','jpeg',270,4,'2020-08-13 12:42:47','2020-08-13 12:42:50'), (2736,'ti2222.jpg','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/52e47a4a54ad4875a28f1f74aad134980qsl1vkpua.jpg','image/maintain/2020/08/13/52e47a4a54ad4875a28f1f74aad134980qsl1vkpua.jpg','67895','jpeg',270,4,'2020-08-13 12:51:31','2020-08-13 12:51:36'), (2737,'ti41.jpg','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/0fa8569e018846448017f11d1f2795abunxkrejr75.jpg','image/maintain/2020/08/13/0fa8569e018846448017f11d1f2795abunxkrejr75.jpg','95270','jpeg',270,4,'2020-08-13 12:52:25','2020-08-13 12:52:26'), (2738,'webp.webp-(1).jpg','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/1aeaed1e02e542088c53eaaa38dab6eddyxjgr4n70.jpg','image/maintain/2020/08/13/1aeaed1e02e542088c53eaaa38dab6eddyxjgr4n70.jpg','41502','jpeg',270,4,'2020-08-13 12:58:35','2020-08-13 12:58:36'), (2739,'we56456456.png','/www/wwwroot/api.java.crmeb.net/image/maintain/2020/08/13/3f2b2db25f184563989f60ac77dbf305lxirf2h7pq.png','image/maintain/2020/08/13/3f2b2db25f184563989f60ac77dbf305lxirf2h7pq.png','109438','png',270,4,'2020-08-13 13:00:21','2020-08-13 13:00:21'), (2740,'87ceaf59ad5193db3ff9067732e769e4.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/95e065018ba24172b2e2dd2e2833360coobdzkt671.png','image/store/2020/08/13/95e065018ba24172b2e2dd2e2833360coobdzkt671.png','74983','png',271,4,'2020-08-13 13:08:23','2020-08-13 13:08:27'), (2741,'8c8a7deebdd2b5ed93206b17f8b63a90.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/29b418bf2543477d8417a85e779e6d79clby7stw86.png','image/store/2020/08/13/29b418bf2543477d8417a85e779e6d79clby7stw86.png','35310','png',271,4,'2020-08-13 13:29:00','2020-08-13 13:29:03'), (2742,'f75b6e34ebec556370aaf43c0762b47b.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/1826c7f20771444e888501d91332f129wik43qfgmw.png','image/store/2020/08/13/1826c7f20771444e888501d91332f129wik43qfgmw.png','119341','png',271,4,'2020-08-13 13:30:11','2020-08-13 13:30:13'), (2743,'01de26f104098471431e18df50831e2c.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/f4f47201c43e42ac82b83ed711199774ggihs7g6yb.png','image/store/2020/08/13/f4f47201c43e42ac82b83ed711199774ggihs7g6yb.png','155900','png',271,4,'2020-08-13 13:31:46','2020-08-13 13:31:48'), (2744,'598be67d5fc0b8f7f09b892c68f8b4a2.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/f0771d0db94847bbb2cb60ebe5201aa0tzzjzor6d5.png','image/store/2020/08/13/f0771d0db94847bbb2cb60ebe5201aa0tzzjzor6d5.png','167370','png',271,4,'2020-08-13 13:33:04','2020-08-13 13:33:08'), (2745,'c4c94a9a12f2b86eca9b6105c184cda8.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/4209c46356f4478ea3ed2b8adfc8dd4d4udgw8nsig.png','image/store/2020/08/13/4209c46356f4478ea3ed2b8adfc8dd4d4udgw8nsig.png','273690','png',271,4,'2020-08-13 13:34:20','2020-08-13 13:34:23'), (2746,'a039bfe264dfcee883a3bb50e9717cd0.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/183bae2de334412f8593325805bb45e07xvwxc6nbn.png','image/store/2020/08/13/183bae2de334412f8593325805bb45e07xvwxc6nbn.png','49355','png',271,4,'2020-08-13 13:35:34','2020-08-13 13:35:38'), (2747,'ef7202fbd457f730fb6bcf5a6143112e.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/767c7e25f56543f398e11896d356b46a1t4l6k8qk0.png','image/store/2020/08/13/767c7e25f56543f398e11896d356b46a1t4l6k8qk0.png','68732','png',271,4,'2020-08-13 13:36:31','2020-08-13 13:36:33'), (2748,'0382691b39c7ac0e8b7771cf4a1dbda5.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/8525ef6066a04537aa5ee92234dc2edcf1iyqm9gq9.png','image/store/2020/08/13/8525ef6066a04537aa5ee92234dc2edcf1iyqm9gq9.png','84243','png',271,4,'2020-08-13 13:37:21','2020-08-13 13:37:23'), (2749,'3cc9f5efbc26fda12ab7b2759f3a00ac.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/57f108bff43744c88323c666d77cac72g4p0a23tpo.png','image/store/2020/08/13/57f108bff43744c88323c666d77cac72g4p0a23tpo.png','160577','png',271,4,'2020-08-13 13:38:29','2020-08-13 13:38:34'), (2750,'09663f8358d20422a32e1d49943f2ee1.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/72f39322b33249e0b3441908e3b657b2rzf7g4x37c.png','image/store/2020/08/13/72f39322b33249e0b3441908e3b657b2rzf7g4x37c.png','75992','png',271,4,'2020-08-13 13:39:31','2020-08-13 13:39:34'), (2751,'6fbe633ab7195f39963d71036e6eb957.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/bf981c370d9d44f998803310fedb8af3yr9suwbwp1.png','image/store/2020/08/13/bf981c370d9d44f998803310fedb8af3yr9suwbwp1.png','269248','png',271,4,'2020-08-13 13:40:32','2020-08-13 13:40:34'), (2752,'dd42af19ed09aac2c995b8ba62ae8972.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/59a066f8bb5145cbada4b7a08965cf15b26idurig9.png','image/store/2020/08/13/59a066f8bb5145cbada4b7a08965cf15b26idurig9.png','103216','png',271,4,'2020-08-13 13:42:16','2020-08-13 13:42:19'), (2753,'0ab575a0c1c2901ae1080f15d0f12a85.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/769f2ba251114a75bc3da94166770482zv3tb4ogjy.png','image/store/2020/08/13/769f2ba251114a75bc3da94166770482zv3tb4ogjy.png','112263','png',271,4,'2020-08-13 13:43:19','2020-08-13 13:43:24'), (2754,'aa732f96a5f67e1470416aab96809fee.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/5c9d8b4b4a2e4fc782558787fc941e24o6u5iv52dl.png','image/store/2020/08/13/5c9d8b4b4a2e4fc782558787fc941e24o6u5iv52dl.png','101227','png',271,4,'2020-08-13 13:44:13','2020-08-13 13:44:14'), (2755,'b0f410b40f72533a7e4b6d5a73baa214.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/3a985dc276b941c093a12332500d9784ce3bed9l0c.png','image/store/2020/08/13/3a985dc276b941c093a12332500d9784ce3bed9l0c.png','142066','png',271,4,'2020-08-13 13:45:50','2020-08-13 13:45:54'), (2756,'1242f55c97793d1be3b07ae4ff7f0dfa.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/5771a123b9a24666b5cdcf531f7744d6grduvuarjw.png','image/store/2020/08/13/5771a123b9a24666b5cdcf531f7744d6grduvuarjw.png','114946','png',0,4,'2020-08-13 13:46:19','2020-08-13 13:46:24'), (2757,'2dab99e39dd7ae94ee8d4560d1957f4e.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/760282c126c74ff7a335c3efd6bb2e27vduh9zraqs.png','image/store/2020/08/13/760282c126c74ff7a335c3efd6bb2e27vduh9zraqs.png','278628','png',271,4,'2020-08-13 13:47:14','2020-08-13 13:47:19'), (2758,'56e84cd4927f4f6115d76774efc51e3e.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/ba82799518704655ab2fdc254336de08wtb2ofda96.png','image/store/2020/08/13/ba82799518704655ab2fdc254336de08wtb2ofda96.png','215666','png',271,4,'2020-08-13 13:48:28','2020-08-13 13:48:29'), (2759,'32ba02b3a8b8a666d79217a8dcfdaefd.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/eb7a947539d94cd495ea6493e37a3e35lkqmcnnl9q.png','image/store/2020/08/13/eb7a947539d94cd495ea6493e37a3e35lkqmcnnl9q.png','147901','png',271,4,'2020-08-13 13:49:28','2020-08-13 13:49:29'), (2760,'6d73b06cc6c6188ffe4ca532f3a06d33.png','/www/wwwroot/api.java.crmeb.net/image/store/2020/08/13/a84efcfa299c4269af95d671e122d4770vrq87ttfz.png','image/store/2020/08/13/a84efcfa299c4269af95d671e122d4770vrq87ttfz.png','150018','png',271,4,'2020-08-13 13:50:37','2020-08-13 13:50:39'), (2761,'fcdb87c2ecb5ab2af38fb2c2428b288a.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/13/1be6660a6769401795b0703d12f9f2a8wdgogu15d2.jpg','image/content/2020/08/13/1be6660a6769401795b0703d12f9f2a8wdgogu15d2.jpg','49351','jpeg',303,4,'2020-08-13 13:53:15','2020-08-13 13:53:19'), (2762,'0b00656dd115aec48a7fdf2c8bc4f731.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/13/f71efcef9e5a4341a31f229289706142xpq50p1fyx.jpg','image/content/2020/08/13/f71efcef9e5a4341a31f229289706142xpq50p1fyx.jpg','111788','jpeg',303,4,'2020-08-13 13:54:08','2020-08-13 13:54:10'), (2763,'cd43093c8f2743a8269af44cf1d81213.jpg','/www/wwwroot/api.java.crmeb.net/image/setting/2020/08/13/2d4a80ff72b94aa0884808aaa71b4cf353ca5c4m1l.jpg','image/setting/2020/08/13/2d4a80ff72b94aa0884808aaa71b4cf353ca5c4m1l.jpg','112322','jpeg',303,4,'2020-08-13 13:54:38','2020-08-13 13:54:40'), (2764,'logo11111111111.png','/www/wwwroot/api.java.crmeb.net/image/operation/2020/08/13/f0b2500e7a6c4b01b5b5be3cd3b780e1358f4ct3m3.png','image/operation/2020/08/13/f0b2500e7a6c4b01b5b5be3cd3b780e1358f4ct3m3.png','2718','png',0,4,'2020-08-13 14:09:36','2020-08-13 14:09:40'), (2765,'b8d70f6dec90936e3fcd74502a0ca455.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/13/421de3ec45a7462e855324463743c5f8wdto4m4hof.jpg','image/content/2020/08/13/421de3ec45a7462e855324463743c5f8wdto4m4hof.jpg','124809','jpeg',303,4,'2020-08-13 14:14:08','2020-08-13 14:14:11'), (2766,'c222ed7508149e64a80f9f577e6ab9f1.jpg','/www/wwwroot/api.java.crmeb.net/image/setting/2020/08/13/cc69277fbe0645dda4e0a4a111c7e744zpz7cokabk.jpg','image/setting/2020/08/13/cc69277fbe0645dda4e0a4a111c7e744zpz7cokabk.jpg','150853','jpeg',303,4,'2020-08-13 14:15:35','2020-08-13 14:15:36'), (2767,'O1CN014v7P7f22AEJ80sYzJ_!!2-item_pic.png_430x430q90.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/13/42b5167b93a44430ba86acc8bf666de3h2owh5walv.png','image/content/2020/08/13/42b5167b93a44430ba86acc8bf666de3h2owh5walv.png','85227','png',0,4,'2020-08-13 14:16:23','2020-08-13 14:16:26'), (2768,'O1CN01GsuSCS22AELzADNIw_!!2-item_pic.png_430x430q90.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/13/e3ab04e8645d4018b86c37e8bd5e8532ph4r9xmziw.png','image/content/2020/08/13/e3ab04e8645d4018b86c37e8bd5e8532ph4r9xmziw.png','96671','png',0,4,'2020-08-13 14:16:30','2020-08-13 14:16:31'), (2769,'O1CN01lbZLx722AELyYpDUR_!!1917047079.png_430x430q90.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','image/content/2020/08/13/b1b14c22e72940ba96e0775fd0b4432cka3o1j1tlg.png','154150','png',0,4,'2020-08-13 14:17:11','2020-08-13 14:17:16'), (2770,'O1CN01reDMkk22AEJ0ek39L_!!2-item_pic.png_430x430q90.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/13/32bd397a3d7a4ae9b3155d999785500b5ulxa373fz.png','image/content/2020/08/13/32bd397a3d7a4ae9b3155d999785500b5ulxa373fz.png','21386','png',0,4,'2020-08-13 14:17:17','2020-08-13 14:17:21'), (2771,'O1CN01tf2B5s22AEJ9gGpzX_!!2-item_pic.png_430x430q90.png','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png','image/content/2020/08/13/312234fff7f24c37bcedd117f1572b3e5z7eydhpyr.png','219975','png',0,4,'2020-08-13 14:17:24','2020-08-13 14:17:26'), (2772,'fc6a93a9b9c918d6afa08e60193a0a41.jpg','/www/wwwroot/api.java.crmeb.net/image/content/2020/08/13/c2c40197c8ed4bff9a0297fdc3d908357b3qpqtv8s.jpg','image/content/2020/08/13/c2c40197c8ed4bff9a0297fdc3d908357b3qpqtv8s.jpg','152243','jpeg',303,4,'2020-08-13 14:18:19','2020-08-13 14:18:21'), (2773,'O1CN01IvPN4u22AEKnCFHJl_!!1917047079.jpg','/www/wwwroot/api.java.crmeb.net/image/setting/2020/08/13/a1f8b2d17b4b4b2bb914e09fea97636a2zmlsikns1.jpg','image/setting/2020/08/13/a1f8b2d17b4b4b2bb914e09fea97636a2zmlsikns1.jpg','87453','jpeg',0,4,'2020-08-13 14:18:59','2020-08-13 14:19:01'), (2774,'O1CN01NE9FZG22AELZJ0ACa_!!1917047079.jpg','/www/wwwroot/api.java.crmeb.net/image/setting/2020/08/13/d93281a53c2a468b8e84c70868394bd0s2xae7ry8g.jpg','image/setting/2020/08/13/d93281a53c2a468b8e84c70868394bd0s2xae7ry8g.jpg','429447','jpeg',0,4,'2020-08-13 14:19:06','2020-08-13 14:19:06'), (2775,'O1CN0111Oguc22AEJC5IDxa_!!1917047079.jpg','/www/wwwroot/api.java.crmeb.net/image/setting/2020/08/13/75dde6c76a994fd38e63b6a8018dc8dac82737jd9a.jpg','image/setting/2020/08/13/75dde6c76a994fd38e63b6a8018dc8dac82737jd9a.jpg','472872','jpeg',0,4,'2020-08-13 14:19:10','2020-08-13 14:19:11'), (2776,'4ff938b47e3fda5f6332b21cfa79580a.jpg','/www/wwwroot/api.java.crmeb.net/image/setting/2020/08/13/31909041956d428d8fd1d810bd837e98z31b04296h.jpg','image/setting/2020/08/13/31909041956d428d8fd1d810bd837e98z31b04296h.jpg','140335','jpeg',303,4,'2020-08-13 14:58:45','2020-08-13 14:58:47'), (2777,'音频.mp3','/www/wwwroot/api.java.crmeb.net/file/operation/2020/08/13/5d63689de0b84a4896a2bae75874ef81gxobdd1c4n.mp3','file/operation/2020/08/13/5d63689de0b84a4896a2bae75874ef81gxobdd1c4n.mp3','51936','audio/mpeg',10,4,'2020-08-13 15:57:25','2020-08-13 15:57:29'); /*!40000 ALTER TABLE `eb_system_attachment` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_system_attachment_category # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_attachment_category`; CREATE TABLE `eb_system_attachment_category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pid` int(11) DEFAULT '0' COMMENT '父级ID', `name` varchar(50) NOT NULL DEFAULT '' COMMENT '分类名称', `enname` varchar(50) DEFAULT NULL COMMENT '分类目录', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `id` (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='附件分类表'; # Dump of table eb_system_city # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_city`; CREATE TABLE `eb_system_city` ( `id` int(11) NOT NULL AUTO_INCREMENT, `city_id` int(11) NOT NULL DEFAULT '0' COMMENT '城市id', `level` int(11) NOT NULL DEFAULT '0' COMMENT '省市级别', `parent_id` int(11) NOT NULL DEFAULT '0' COMMENT '父级id', `area_code` varchar(30) NOT NULL DEFAULT '' COMMENT '区号', `name` varchar(100) NOT NULL DEFAULT '' COMMENT '名称', `merger_name` varchar(255) NOT NULL DEFAULT '' COMMENT '合并名称', `lng` varchar(50) NOT NULL DEFAULT '' COMMENT '经度', `lat` varchar(50) NOT NULL DEFAULT '' COMMENT '纬度', `is_show` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否展示', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='城市表'; LOCK TABLES `eb_system_city` WRITE; /*!40000 ALTER TABLE `eb_system_city` DISABLE KEYS */; INSERT INTO `eb_system_city` (`id`, `city_id`, `level`, `parent_id`, `area_code`, `name`, `merger_name`, `lng`, `lat`, `is_show`, `create_time`, `update_time`) VALUES (1,1,0,0,'110000000000','西安','北京','116.407526','39.904030',0,'2020-04-17 14:28:09','2020-08-11 17:50:46'), (2,7362,0,0,'120000000000','天津','天津','117.200983','39.084158',1,'2020-04-17 14:28:09','2020-08-13 14:23:14'), (3,13267,0,0,'130000000000','河北省','河北','114.468664','38.037057',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (4,67747,0,0,'140000000000','山西省','山西','112.562398','37.873531',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (5,99537,0,0,'150000000000','内蒙古自治区','内蒙古','111.765617','40.817498',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (6,115224,0,0,'210000000000','辽宁省','辽宁','123.429440','41.835441',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (7,133208,0,0,'220000000000','吉林省','吉林','125.325990','43.896536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (8,145665,0,0,'230000000000','黑龙江省','黑龙江','126.661669','45.742347',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (9,161792,0,0,'310000000000','上海市','上海','121.473701','31.230416',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (10,167904,0,0,'320000000000','江苏省','江苏','118.763232','32.061707',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (11,191019,0,0,'330000000000','浙江省','浙江','120.152791','30.267446',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (12,224649,0,0,'340000000000','安徽省','安徽','117.284922','31.861184',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (13,244377,0,0,'350000000000','福建省','福建','119.295144','26.100779',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (14,262698,0,0,'360000000000','江西省','江西','115.909228','28.675696',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (15,285860,0,0,'370000000000','山东省','山东','117.020359','36.668530',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (16,367395,0,0,'410000000000','河南省','河南','113.753602','34.765515',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (17,420824,0,0,'420000000000','湖北省','湖北','114.341861','30.546498',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (18,452123,0,0,'430000000000','湖南省','湖南','112.983810','28.112444',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (19,483250,0,0,'440000000000','广东省','广东','113.266530','23.132191',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (20,511462,0,0,'450000000000','广西壮族自治区','广西','108.327546','22.815478',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (21,529344,0,0,'460000000000','海南省','海南','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (22,533328,0,0,'500000000000','重庆市','重庆','106.551556','29.563009',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (23,545532,0,0,'510000000000','四川省','四川','104.075931','30.651651',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (24,604131,0,0,'520000000000','贵州省','贵州','106.707410','26.598194',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (25,624372,0,0,'530000000000','云南省','云南','102.710002','25.045806',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (26,640332,0,0,'540000000000','西藏自治区','西藏','91.117212','29.646922',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (27,646578,0,0,'610000000000','陕西省','陕西','108.954239','34.265472',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (28,671119,0,0,'620000000000','甘肃省','甘肃','103.826308','36.059421',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (29,690094,0,0,'630000000000','青海省','青海','101.780199','36.620901',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (30,695259,0,0,'640000000000','宁夏回族自治区','宁夏','106.258754','38.471317',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (31,698440,0,0,'650000000000','新疆维吾尔自治区','新疆','87.627704','43.793026',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (32,714368,0,0,'0','香港特别行政区','香港','114.173355','22.320048',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (33,714390,0,0,'0','澳门特别行政区','澳门','113.549090','22.198951',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (34,714401,0,0,'0','台湾','台湾','121.509062','25.044332',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (35,2,1,1,'110100000000','北京市','北京','116.407526','39.904030',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (36,7363,1,7362,'120100000000','天津市','天津','117.200983','39.084158',1,'2020-04-17 14:28:09','2020-08-13 14:23:23'), (37,13268,1,13267,'130100000000','石家庄市','河北,石家庄','114.514859','38.042306',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (38,18128,1,13267,'130200000000','唐山市','河北,唐山','118.180193','39.630867',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (39,24371,1,13267,'130300000000','秦皇岛市','河北,秦皇岛','119.600492','39.935385',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (40,26779,1,13267,'130400000000','邯郸市','河北,邯郸','114.538961','36.625657',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (41,32688,1,13267,'130500000000','邢台市','河北,邢台','114.504844','37.070589',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (42,38160,1,13267,'130600000000','保定市','河北,保定','115.464806','38.873891',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (43,44570,1,13267,'130700000000','张家口市','河北,张家口','114.887543','40.824418',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (44,49190,1,13267,'130800000000','承德市','河北,承德','117.962410','40.954071',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (45,52018,1,13267,'130900000000','沧州市','河北,沧州','116.838834','38.304477',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (46,58247,1,13267,'131000000000','廊坊市','河北,廊坊','116.683752','39.538047',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (47,61804,1,13267,'131100000000','衡水市','河北,衡水','115.670177','37.738920',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (48,66813,1,13267,'139000000000','直辖县','河北','114.468664','38.037057',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (49,67748,1,67747,'140100000000','太原市','山西,太原','112.548879','37.870590',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (50,69390,1,67747,'140200000000','大同市','山西,大同','113.612440','40.040295',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (51,71850,1,67747,'140300000000','阳泉市','山西,阳泉','113.580519','37.856971',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (52,72975,1,67747,'140400000000','长治市','山西,长治','113.116255','36.195386',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (53,76726,1,67747,'140500000000','晋城市','山西,晋城','112.851831','35.490701',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (54,79163,1,67747,'140600000000','朔州市','山西,朔州','112.432825','39.331595',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (55,81000,1,67747,'140700000000','晋中市','山西,晋中','112.752694','37.687024',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (56,84092,1,67747,'140800000000','运城市','山西,运城','111.007528','35.026412',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (57,87613,1,67747,'140900000000','忻州市','山西,忻州','112.734174','38.416663',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (58,92738,1,67747,'141000000000','临汾市','山西,临汾','111.518976','36.088005',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (59,96064,1,67747,'141100000000','吕梁市','山西,吕梁','111.144319','37.518314',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (60,99538,1,99537,'150100000000','呼和浩特市','内蒙古,呼和浩特','111.749180','40.842585',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (61,100904,1,99537,'150200000000','包头市','内蒙古,包头','109.840347','40.657449',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (62,101772,1,99537,'150300000000','乌海市','内蒙古,乌海','106.794249','39.655388',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (63,101884,1,99537,'150400000000','赤峰市','内蒙古,赤峰','118.886856','42.257817',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (64,104457,1,99537,'150500000000','通辽市','内蒙古,通辽','122.243444','43.652890',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (65,107065,1,99537,'150600000000','鄂尔多斯市','内蒙古,鄂尔多斯','109.781327','39.608266',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (66,108166,1,99537,'150700000000','呼伦贝尔市','内蒙古,呼伦贝尔','119.765744','49.211574',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (67,109847,1,99537,'150800000000','巴彦淖尔市','内蒙古,巴彦淖尔','107.387657','40.743213',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (68,110889,1,99537,'150900000000','乌兰察布市','内蒙古,乌兰察布','113.132585','40.994785',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (69,112552,1,99537,'152200000000','兴安盟','内蒙古,兴安','122.067042','46.077561',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (70,113777,1,99537,'152500000000','锡林郭勒盟','内蒙古,锡林郭勒','116.048222','43.933454',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (71,114940,1,99537,'152900000000','阿拉善盟','内蒙古,阿拉善','105.728969','38.851892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (72,115225,1,115224,'210100000000','沈阳市','辽宁,沈阳','123.431474','41.805698',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (73,117932,1,115224,'210200000000','大连市','辽宁,大连','121.614682','38.914003',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (74,119789,1,115224,'210300000000','鞍山市','辽宁,鞍山','122.994329','41.108647',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (75,121081,1,115224,'210400000000','抚顺市','辽宁,抚顺','123.957208','41.880872',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (76,122142,1,115224,'210500000000','本溪市','辽宁,本溪','123.766485','41.294175',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (77,122730,1,115224,'210600000000','丹东市','辽宁,丹东','124.354706','40.000499',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (78,123698,1,115224,'210700000000','锦州市','辽宁,锦州','121.127003','41.095119',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (79,125249,1,115224,'210800000000','营口市','辽宁,营口','122.235417','40.667012',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (80,126156,1,115224,'210900000000','阜新市','辽宁,阜新','121.670323','42.021619',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (81,127070,1,115224,'211000000000','辽阳市','辽宁,辽阳','123.236944','41.267244',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (82,127834,1,115224,'211100000000','盘锦市','辽宁,盘锦','122.070714','41.119997',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (83,128421,1,115224,'211200000000','铁岭市','辽宁,铁岭','123.726166','42.223769',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (84,129977,1,115224,'211300000000','朝阳市','辽宁,朝阳','120.389862','41.497767',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (85,131738,1,115224,'211400000000','葫芦岛市','辽宁,葫芦岛','120.836932','40.711052',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (86,133209,1,133208,'220100000000','长春市','吉林,长春','125.323544','43.817071',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (87,135392,1,133208,'220200000000','吉林市','吉林,吉林','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (88,137206,1,133208,'220300000000','四平市','吉林,四平','124.350398','43.166419',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (89,138721,1,133208,'220400000000','辽源市','吉林,辽源','125.143532','42.887918',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (90,139340,1,133208,'220500000000','通化市','吉林,通化','125.939697','41.728401',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (91,140601,1,133208,'220600000000','白山市','吉林,白山','126.423587','41.939994',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (92,141361,1,133208,'220700000000','松原市','吉林,松原','124.825117','45.141789',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (93,142786,1,133208,'220800000000','白城市','吉林,白城','122.839024','45.619641',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (94,143990,1,133208,'222400000000','延边朝鲜族自治州','吉林,延边','129.508946','42.891253',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (95,145666,1,145665,'230100000000','哈尔滨市','黑龙江,哈尔滨','126.534967','45.803775',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (96,149079,1,145665,'230200000000','齐齐哈尔市','黑龙江,齐齐哈尔','123.918186','47.354348',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (97,150915,1,145665,'230300000000','鸡西市','黑龙江,鸡西','130.969333','45.295075',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (98,151830,1,145665,'230400000000','鹤岗市','黑龙江,鹤岗','130.297964','47.349916',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (99,152413,1,145665,'230500000000','双鸭山市','黑龙江,双鸭山','131.159133','46.646508',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (100,153313,1,145665,'230600000000','大庆市','黑龙江,大庆','125.103784','46.589309',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (101,154201,1,145665,'230700000000','伊春市','黑龙江,伊春','128.841147','47.727536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (102,155076,1,145665,'230800000000','佳木斯市','黑龙江,佳木斯','130.318917','46.799922',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (103,156713,1,145665,'230900000000','七台河市','黑龙江,七台河','131.003138','45.771726',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (104,157130,1,145665,'231000000000','牡丹江市','黑龙江,牡丹江','129.633168','44.551653',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (105,158623,1,145665,'231100000000','黑河市','黑龙江,黑河','127.528560','50.245329',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (106,159769,1,145665,'231200000000','绥化市','黑龙江,绥化','126.968887','46.653845',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (107,161651,1,145665,'232700000000','大兴安岭地区','黑龙江,大兴安岭','124.711080','52.335206',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (108,161793,1,161792,'310100000000','上海市','上海','121.473701','31.230416',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (109,167905,1,167904,'320100000000','南京市','江苏,南京','118.796877','32.060255',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (110,169375,1,167904,'320200000000','无锡市','江苏,无锡','120.311910','31.491169',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (111,170724,1,167904,'320300000000','徐州市','江苏,徐州','117.284124','34.205768',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (112,173635,1,167904,'320400000000','常州市','江苏,常州','119.973987','31.810689',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (113,174764,1,167904,'320500000000','苏州市','江苏,苏州','120.585315','31.298886',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (114,176920,1,167904,'320600000000','南通市','江苏,南通','120.894291','31.980171',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (115,178999,1,167904,'320700000000','连云港市','江苏,连云港','119.221611','34.596653',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (116,180743,1,167904,'320800000000','淮安市','江苏,淮安','119.015285','33.610353',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (117,182538,1,167904,'320900000000','盐城市','江苏,盐城','120.163561','33.347382',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (118,185201,1,167904,'321000000000','扬州市','江苏,扬州','119.412966','32.394210',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (119,186657,1,167904,'321100000000','镇江市','江苏,镇江','119.425836','32.187849',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (120,187441,1,167904,'321200000000','泰州市','江苏,泰州','119.923116','32.455778',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (121,189402,1,167904,'321300000000','宿迁市','江苏,宿迁','118.275198','33.963232',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (122,191020,1,191019,'330100000000','杭州市','浙江,杭州','120.155070','30.274084',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (123,194395,1,191019,'330200000000','宁波市','浙江,宁波','121.550357','29.874556',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (124,197850,1,191019,'330300000000','温州市','浙江,温州','120.699366','27.994267',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (125,203852,1,191019,'330400000000','嘉兴市','浙江,嘉兴','120.755486','30.746129',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (126,205101,1,191019,'330500000000','湖州市','浙江,湖州','120.086823','30.894348',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (127,206438,1,191019,'330600000000','绍兴市','浙江,绍兴','120.580232','30.029752',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (128,209250,1,191019,'330700000000','金华市','浙江,金华','119.647444','29.079059',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (129,214260,1,191019,'330800000000','衢州市','浙江,衢州','118.859457','28.970079',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (130,215955,1,191019,'330900000000','舟山市','浙江,舟山','122.207215','29.985295',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (131,216449,1,191019,'331000000000','台州市','浙江,台州','121.420757','28.656386',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (132,221610,1,191019,'331100000000','丽水市','浙江,丽水','119.922796','28.467630',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (133,224650,1,224649,'340100000000','合肥市','安徽,合肥','117.227239','31.820586',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (134,226469,1,224649,'340200000000','芜湖市','安徽,芜湖','118.432941','31.352859',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (135,227482,1,224649,'340300000000','蚌埠市','安徽,蚌埠','117.389719','32.916287',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (136,228630,1,224649,'340400000000','淮南市','安徽,淮南','116.999932','32.625478',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (137,229844,1,224649,'340500000000','马鞍山市','安徽,马鞍山','118.506759','31.670452',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (138,230476,1,224649,'340600000000','淮北市','安徽,淮北','116.798265','33.955844',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (139,230981,1,224649,'340700000000','铜陵市','安徽,铜陵','117.812079','30.945429',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (140,231499,1,224649,'340800000000','安庆市','安徽,安庆','117.063754','30.543494',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (141,233236,1,224649,'341000000000','黄山市','安徽,黄山','118.337481','29.714655',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (142,234109,1,224649,'341100000000','滁州市','安徽,滁州','118.317106','32.301556',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (143,235483,1,224649,'341200000000','阜阳市','安徽,阜阳','115.814204','32.890124',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (144,237607,1,224649,'341300000000','宿州市','安徽,宿州','116.964356','33.646373',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (145,239084,1,224649,'341500000000','六安市','安徽,六安','116.521854','31.733699',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (146,241180,1,224649,'341600000000','亳州市','安徽,亳州','115.778676','33.844582',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (147,242634,1,224649,'341700000000','池州市','安徽,池州','117.491568','30.664800',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (148,243399,1,224649,'341800000000','宣城市','安徽,宣城','118.758816','30.940718',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (149,244378,1,244377,'350100000000','福州市','福建,福州','119.296494','26.074507',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (150,247478,1,244377,'350200000000','厦门市','福建,厦门','118.089425','24.479833',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (151,248059,1,244377,'350300000000','莆田市','福建,莆田','119.007777','25.454084',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (152,249098,1,244377,'350400000000','三明市','福建,三明','117.638678','26.263406',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (153,251197,1,244377,'350500000000','泉州市','福建,泉州','118.675675','24.874132',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (154,253905,1,244377,'350600000000','漳州市','福建,漳州','117.647481','24.512948',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (155,256112,1,244377,'350700000000','南平市','福建,南平','118.177708','26.641768',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (156,258160,1,244377,'350800000000','龙岩市','福建,龙岩','117.017536','25.075123',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (157,260230,1,244377,'350900000000','宁德市','福建,宁德','119.547932','26.665617',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (158,262699,1,262698,'360100000000','南昌市','江西,南昌','115.858197','28.682892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (159,264862,1,262698,'360200000000','景德镇市','江西,景德镇','117.178419','29.268835',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (160,265677,1,262698,'360300000000','萍乡市','江西,萍乡','113.854556','27.622768',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (161,266521,1,262698,'360400000000','九江市','江西,九江','116.001930','29.705077',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (162,269107,1,262698,'360500000000','新余市','江西,新余','114.917346','27.817808',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (163,269654,1,262698,'360600000000','鹰潭市','江西,鹰潭','117.069202','28.260189',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (164,270222,1,262698,'360700000000','赣州市','江西,赣州','114.935029','25.831829',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (165,274444,1,262698,'360800000000','吉安市','江西,吉安','114.992509','27.113443',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (166,277615,1,262698,'360900000000','宜春市','江西,宜春','114.416778','27.815619',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (167,280562,1,262698,'361000000000','抚州市','江西,抚州','116.358181','27.949217',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (168,282841,1,262698,'361100000000','上饶市','江西,上饶','117.943433','28.454862',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (169,285861,1,285860,'370100000000','济南市','山东,济南','117.119999','36.651216',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (170,291235,1,285860,'370200000000','青岛市','山东,青岛','120.382639','36.067082',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (171,298025,1,285860,'370300000000','淄博市','山东,淄博','118.054927','36.813487',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (172,301711,1,285860,'370400000000','枣庄市','山东,枣庄','117.323725','34.810487',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (173,304309,1,285860,'370500000000','东营市','山东,东营','118.674767','37.434751',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (174,306339,1,285860,'370600000000','烟台市','山东,烟台','121.447935','37.463822',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (175,313063,1,285860,'370700000000','潍坊市','山东,潍坊','119.161755','36.706774',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (176,320179,1,285860,'370800000000','济宁市','山东,济宁','116.587098','35.414921',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (177,326706,1,285860,'370900000000','泰安市','山东,泰安','117.087614','36.200252',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (178,330547,1,285860,'371000000000','威海市','山东,威海','122.120419','37.513068',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (179,333140,1,285860,'371100000000','日照市','山东,日照','119.526888','35.416377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (180,336050,1,285860,'371200000000','莱芜市','山东,莱芜','117.676723','36.213813',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (181,337144,1,285860,'371300000000','临沂市','山东,临沂','118.356448','35.104672',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (182,344133,1,285860,'371400000000','德州市','山东,德州','116.357464','37.434092',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (183,349382,1,285860,'371500000000','聊城市','山东,聊城','115.985371','36.456703',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (184,355972,1,285860,'371600000000','滨州市','山东,滨州','117.970703','37.381990',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (185,361375,1,285860,'371700000000','菏泽市','山东,菏泽','115.480656','35.233750',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (186,367396,1,367395,'410100000000','郑州市','河南,郑州','113.625368','34.746599',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (187,370304,1,367395,'410200000000','开封市','河南,开封','114.307581','34.797239',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (188,372971,1,367395,'410300000000','洛阳市','河南,洛阳','112.454040','34.619682',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (189,376365,1,367395,'410400000000','平顶山市','河南,平顶山','113.192661','33.766169',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (190,379245,1,367395,'410500000000','安阳市','河南,安阳','114.392392','36.097577',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (191,382878,1,367395,'410600000000','鹤壁市','河南,鹤壁','114.297272','35.747225',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (192,383890,1,367395,'410700000000','新乡市','河南,新乡','113.926800','35.303004',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (193,387707,1,367395,'410800000000','焦作市','河南,焦作','113.241823','35.215892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (194,389719,1,367395,'410900000000','濮阳市','河南,濮阳','115.029215','35.761829',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (195,392737,1,367395,'411000000000','许昌市','河南,许昌','113.852640','34.035506',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (196,395254,1,367395,'411100000000','漯河市','河南,漯河','114.016539','33.581412',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (197,396611,1,367395,'411200000000','三门峡市','河南,三门峡','111.200135','34.772493',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (198,398169,1,367395,'411300000000','南阳市','河南,南阳','112.528321','32.990833',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (199,403311,1,367395,'411400000000','商丘市','河南,商丘','115.656370','34.414172',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (200,408287,1,367395,'411500000000','信阳市','河南,信阳','114.091023','32.146983',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (201,411925,1,367395,'411600000000','周口市','河南,周口','114.696951','33.626149',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (202,417174,1,367395,'411700000000','驻马店市','河南,驻马店','114.022298','33.011529',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (203,420258,1,367395,'419000000000','直辖县','河南','113.753602','34.765515',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (204,420825,1,420824,'420100000000','武汉市','湖北,武汉','114.305392','30.593098',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (205,424449,1,420824,'420200000000','黄石市','湖北,黄石','115.038520','30.199652',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (206,425508,1,420824,'420300000000','十堰市','湖北,十堰','110.797990','32.629397',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (207,427710,1,420824,'420500000000','宜昌市','湖北,宜昌','111.286471','30.691967',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (208,429501,1,420824,'420600000000','襄阳市','湖北,襄阳','112.122414','32.008986',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (209,432415,1,420824,'420700000000','鄂州市','湖北,鄂州','114.894843','30.391940',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (210,432829,1,420824,'420800000000','荆门市','湖北,荆门','112.199265','31.035423',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (211,434548,1,420824,'420900000000','孝感市','湖北,孝感','113.916902','30.924568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (212,437779,1,420824,'421000000000','荆州市','湖北,荆州','112.239741','30.335165',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (213,440639,1,420824,'421100000000','黄冈市','湖北,黄冈','114.872316','30.453905',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (214,445040,1,420824,'421200000000','咸宁市','湖北,咸宁','114.322492','29.841443',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (215,446212,1,420824,'421300000000','随州市','湖北,随州','113.382458','31.690215',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (216,447268,1,420824,'422800000000','恩施土家族苗族自治州','湖北,恩施','109.488172','30.272156',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (217,449865,1,420824,'429000000000','直辖县','湖北','114.341861','30.546498',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (218,452124,1,452123,'430100000000','长沙市','湖南,长沙','112.938814','28.228209',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (219,453799,1,452123,'430200000000','株洲市','湖南,株洲','113.134002','27.827550',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (220,455283,1,452123,'430300000000','湘潭市','湖南,湘潭','112.944049','27.829738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (221,456303,1,452123,'430400000000','衡阳市','湖南,衡阳','112.571997','26.893230',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (222,459251,1,452123,'430500000000','邵阳市','湖南,邵阳','111.467791','27.238892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (223,463141,1,452123,'430600000000','岳阳市','湖南,岳阳','113.128958','29.357104',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (224,465105,1,452123,'430700000000','常德市','湖南,常德','111.698497','29.031673',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (225,467562,1,452123,'430800000000','张家界市','湖南,张家界','110.479191','29.117096',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (226,468660,1,452123,'430900000000','益阳市','湖南,益阳','112.355180','28.553860',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (227,470123,1,452123,'431000000000','郴州市','湖南,郴州','113.014717','25.770509',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (228,472709,1,452123,'431100000000','永州市','湖南,永州','111.613445','26.420394',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (229,476148,1,452123,'431200000000','怀化市','湖南,怀化','109.998488','27.554978',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (230,479103,1,452123,'431300000000','娄底市','湖南,娄底','111.993497','27.700062',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (231,481319,1,452123,'433100000000','湘西土家族苗族自治州','湖南,湘西','109.739172','28.311947',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (232,483251,1,483250,'440100000000','广州市','广东,广州','113.264434','23.129162',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (233,486129,1,483250,'440200000000','韶关市','广东,韶关','113.597522','24.810403',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (234,487721,1,483250,'440300000000','深圳市','广东,深圳','114.057868','22.543099',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (235,488589,1,483250,'440400000000','珠海市','广东,珠海','113.576726','22.270715',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (236,488954,1,483250,'440500000000','汕头市','广东,汕头','116.681972','23.354091',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (237,490106,1,483250,'440600000000','佛山市','广东,佛山','113.121416','23.021548',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (238,490919,1,483250,'440700000000','江门市','广东,江门','113.081901','22.578738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (239,492341,1,483250,'440800000000','湛江市','广东,湛江','110.359377','21.270707',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (240,494394,1,483250,'440900000000','茂名市','广东,茂名','110.925456','21.662999',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (241,496438,1,483250,'441200000000','肇庆市','广东,肇庆','112.465091','23.047191',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (242,498104,1,483250,'441300000000','惠州市','广东,惠州','114.416196','23.111847',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (243,499489,1,483250,'441400000000','梅州市','广东,梅州','116.122238','24.288615',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (244,501867,1,483250,'441500000000','汕尾市','广东,汕尾','115.375278','22.786211',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (245,502828,1,483250,'441600000000','河源市','广东,河源','114.700447','23.743538',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (246,504366,1,483250,'441700000000','阳江市','广东,阳江','111.982232','21.857958',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (247,505298,1,483250,'441800000000','清远市','广东,清远','113.056031','23.681763',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (248,506616,1,483250,'441900000000','东莞市','广东,东莞','113.751765','23.020536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (249,507255,1,483250,'442000000000','中山市','广东,中山','113.392782','22.517645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (250,507557,1,483250,'445100000000','潮州市','广东,潮州','116.622603','23.656950',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (251,508648,1,483250,'445200000000','揭阳市','广东,揭阳','116.372831','23.549993',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (252,510408,1,483250,'445300000000','云浮市','广东,云浮','112.044491','22.915094',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (253,511463,1,511462,'450100000000','南宁市','广西,南宁','108.366543','22.817002',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (254,513434,1,511462,'450200000000','柳州市','广西,柳州','109.415953','24.325502',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (255,514790,1,511462,'450300000000','桂林市','广西,桂林','110.290194','25.273566',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (256,516858,1,511462,'450400000000','梧州市','广西,梧州','111.279115','23.476962',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (257,517933,1,511462,'450500000000','北海市','广西,北海','109.119927','21.481254',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (258,518407,1,511462,'450600000000','防城港市','广西,防城港','108.353846','21.686860',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (259,518808,1,511462,'450700000000','钦州市','广西,钦州','108.654146','21.979933',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (260,519929,1,511462,'450800000000','贵港市','广西,贵港','109.598926','23.111530',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (261,521166,1,511462,'450900000000','玉林市','广西,玉林','110.164756','22.636379',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (262,522786,1,511462,'451000000000','百色市','广西,百色','106.618201','23.902333',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (263,524814,1,511462,'451100000000','贺州市','广西,贺州','111.566694','24.403582',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (264,525638,1,511462,'451200000000','河池市','广西,河池','108.085261','24.692931',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (265,527443,1,511462,'451300000000','来宾市','广西,来宾','109.221465','23.750306',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (266,528339,1,511462,'451400000000','崇左市','广西,崇左','107.364711','22.376532',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (267,529345,1,529344,'460100000000','海口市','海南,海口','110.198293','20.044001',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (268,529878,1,529344,'460200000000','三亚市','海南,三亚','109.511909','18.252847',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (269,530060,1,529344,'460300000000','三沙市','海南,三沙','112.338695','16.831839',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (270,530070,1,529344,'460400000000','儋州市','海南,儋州','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (271,530468,1,529344,'469000000000','省直辖县级行政区域','海南','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (272,533329,1,533328,'500100000000','重庆市','重庆','106.551556','29.563009',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (273,540700,1,533328,'500200000000','县','重庆','106.551556','29.563009',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (274,545533,1,545532,'510100000000','成都市','四川,成都','104.066541','30.572269',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (275,550275,1,545532,'510300000000','自贡市','四川,自贡','104.778442','29.339030',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (276,551809,1,545532,'510400000000','攀枝花市','四川,攀枝花','101.718637','26.582347',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (277,552358,1,545532,'510500000000','泸州市','四川,泸州','105.442258','28.871810',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (278,554142,1,545532,'510600000000','德阳市','四川,德阳','104.397894','31.126855',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (279,556077,1,545532,'510700000000','绵阳市','四川,绵阳','104.679114','31.467450',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (280,560191,1,545532,'510800000000','广元市','四川,广元','105.843357','32.435435',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (281,563242,1,545532,'510900000000','遂宁市','四川,遂宁','105.592898','30.532847',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (282,565735,1,545532,'511000000000','内江市','四川,内江','105.058433','29.580228',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (283,568202,1,545532,'511100000000','乐山市','四川,乐山','103.765568','29.552106',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (284,570733,1,545532,'511300000000','南充市','四川,南充','106.110698','30.837793',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (285,576992,1,545532,'511400000000','眉山市','四川,眉山','103.848538','30.075439',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (286,578485,1,545532,'511500000000','宜宾市','四川,宜宾','104.643215','28.751768',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (287,581870,1,545532,'511600000000','广安市','四川,广安','106.633212','30.455961',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (288,585049,1,545532,'511700000000','达州市','四川,达州','107.468023','31.209571',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (289,588538,1,545532,'511800000000','雅安市','四川,雅安','103.013261','29.980537',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (290,589779,1,545532,'511900000000','巴中市','四川,巴中','106.747477','31.867903',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (291,592598,1,545532,'512000000000','资阳市','四川,资阳','104.627636','30.128901',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (292,594864,1,545532,'513200000000','阿坝藏族羌族自治州','四川,阿坝','102.224653','31.899413',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (293,596525,1,545532,'513300000000','甘孜藏族自治州','四川,甘孜','101.962310','30.049520',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (294,599659,1,545532,'513400000000','凉山彝族自治州','四川,凉山','102.267335','27.881610',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (295,604132,1,604131,'520100000000','贵阳市','贵州,贵阳','106.630153','26.647661',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (296,605834,1,604131,'520200000000','六盘水市','贵州,六盘水','104.830359','26.592666',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (297,607029,1,604131,'520300000000','遵义市','贵州,遵义','106.927389','27.725654',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (298,609309,1,604131,'520400000000','安顺市','贵州,安顺','105.947593','26.253072',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (299,610607,1,604131,'520500000000','毕节市','贵州,毕节','105.283992','27.302589',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (300,614530,1,604131,'520600000000','铜仁市','贵州,铜仁','109.189598','27.731514',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (301,617670,1,604131,'522300000000','黔西南布依族苗族自治州','贵州,黔西南','104.906396','25.087825',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (302,619017,1,604131,'522600000000','黔东南苗族侗族自治州','贵州,黔东南','107.982859','26.583442',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (303,622734,1,604131,'522700000000','黔南布依族苗族自治州','贵州,黔南','107.522097','26.254092',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (304,624373,1,624372,'530100000000','昆明市','云南,昆明','102.832891','24.880095',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (305,626181,1,624372,'530300000000','曲靖市','云南,曲靖','103.796167','25.489999',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (306,627981,1,624372,'530400000000','玉溪市','云南,玉溪','102.546543','24.352036',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (307,628776,1,624372,'530500000000','保山市','云南,保山','99.161761','25.112046',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (308,629781,1,624372,'530600000000','昭通市','云南,昭通','103.717465','27.338257',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (309,631276,1,624372,'530700000000','丽江市','云南,丽江','100.227750','26.855047',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (310,631811,1,624372,'530800000000','普洱市','云南,普洱','100.966512','22.825065',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (311,632971,1,624372,'530900000000','临沧市','云南,临沧','100.079583','23.877573',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (312,634006,1,624372,'532300000000','楚雄彝族自治州','云南,楚雄','101.528069','25.045532',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (313,635219,1,624372,'532500000000','红河哈尼族彝族自治州','云南,红河','103.374799','23.363130',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (314,636688,1,624372,'532600000000','文山壮族苗族自治州','云南,文山','104.216248','23.400734',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (315,637778,1,624372,'532800000000','西双版纳傣族自治州','云南,西双版纳','100.797777','22.007351',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (316,638092,1,624372,'532900000000','大理白族自治州','云南,大理','100.267639','25.606485',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (317,639368,1,624372,'533100000000','德宏傣族景颇族自治州','云南,德宏','98.584895','24.433353',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (318,639802,1,624372,'533300000000','怒江傈僳族自治州','云南,怒江','98.853097','25.852547',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (319,640107,1,624372,'533400000000','迪庆藏族自治州','云南,迪庆','99.702234','27.818882',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (320,640333,1,640332,'540100000000','拉萨市','西藏,拉萨','91.140856','29.645554',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (321,640675,1,640332,'540200000000','日喀则市','西藏,日喀则','88.880583','29.266869',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (322,642571,1,640332,'540300000000','昌都市','西藏,昌都','97.172020','31.140969',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (323,643863,1,640332,'540400000000','林芝市','西藏,林芝','94.361490','29.649128',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (324,644423,1,640332,'540500000000','山南市','西藏,山南','91.117212','29.646922',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (325,645076,1,640332,'542400000000','那曲地区','西藏,那曲','92.051239','31.476202',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (326,646392,1,640332,'542500000000','阿里地区','西藏,阿里','80.105804','32.501111',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (327,646579,1,646578,'610100000000','西安市','陕西,西安','108.940174','34.341568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (328,649979,1,646578,'610200000000','铜川市','陕西,铜川','108.945233','34.896756',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (329,650575,1,646578,'610300000000','宝鸡市','陕西,宝鸡','107.237974','34.361979',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (330,652581,1,646578,'610400000000','咸阳市','陕西,咸阳','108.708991','34.329605',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (331,655295,1,646578,'610500000000','渭南市','陕西,渭南','109.509786','34.499995',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (332,657848,1,646578,'610600000000','延安市','陕西,延安','109.489727','36.585455',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (333,660643,1,646578,'610700000000','汉中市','陕西,汉中','107.023323','33.067480',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (334,663046,1,646578,'610800000000','榆林市','陕西,榆林','109.734589','38.285390',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (335,667681,1,646578,'610900000000','安康市','陕西,安康','109.029022','32.684714',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (336,669707,1,646578,'611000000000','商洛市','陕西,商洛','109.940477','33.870422',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (337,671120,1,671119,'620100000000','兰州市','甘肃,兰州','103.834303','36.061089',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (338,672330,1,671119,'620200000000','嘉峪关市','甘肃,嘉峪关','98.289152','39.773130',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (339,672385,1,671119,'620300000000','金昌市','甘肃,金昌','102.188043','38.520089',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (340,672577,1,671119,'620400000000','白银市','甘肃,白银','104.138559','36.544756',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (341,673463,1,671119,'620500000000','天水市','甘肃,天水','105.724947','34.580863',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (342,676215,1,671119,'620600000000','武威市','甘肃,武威','102.638011','37.928264',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (343,677568,1,671119,'620700000000','张掖市','甘肃,张掖','100.449818','38.925875',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (344,678560,1,671119,'620800000000','平凉市','甘肃,平凉','106.665240','35.543051',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (345,680191,1,671119,'620900000000','酒泉市','甘肃,酒泉','98.494483','39.732410',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (346,680815,1,671119,'621000000000','庆阳市','甘肃,庆阳','107.643631','35.709077',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (347,682322,1,671119,'621100000000','定西市','甘肃,定西','104.626282','35.580662',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (348,684415,1,671119,'621200000000','陇南市','甘肃,陇南','104.921841','33.400684',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (349,687916,1,671119,'622900000000','临夏回族自治州','甘肃,临夏','103.210538','35.601182',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (350,689265,1,671119,'623000000000','甘南藏族自治州','甘肃,甘南','102.911027','34.983385',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (351,690095,1,690094,'630100000000','西宁市','青海,西宁','101.778228','36.617144',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (352,691278,1,690094,'630200000000','海东市','青海,海东','102.104287','36.502039',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (353,693040,1,690094,'632200000000','海北藏族自治州','青海,海北','100.900997','36.954413',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (354,693342,1,690094,'632300000000','黄南藏族自治州','青海,黄南','102.015248','35.519548',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (355,693672,1,690094,'632500000000','海南藏族自治州','青海,海南','101.780199','36.620901',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (356,694220,1,690094,'632600000000','果洛藏族自治州','青海,果洛','100.244808','34.471431',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (357,694478,1,690094,'632700000000','玉树藏族自治州','青海,玉树','97.091934','33.011674',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (358,694846,1,690094,'632800000000','海西蒙古族藏族自治州','青海,海西','97.369751','37.377139',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (359,695260,1,695259,'640100000000','银川市','宁夏,银川','106.230909','38.487193',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (360,695883,1,695259,'640200000000','石嘴山市','宁夏,石嘴山','106.383303','38.983236',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (361,696252,1,695259,'640300000000','吴忠市','宁夏,吴忠','106.198393','37.997460',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (362,696928,1,695259,'640400000000','固原市','宁夏,固原','106.242610','36.015855',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (363,697887,1,695259,'640500000000','中卫市','宁夏,中卫','105.196902','37.499972',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (364,698441,1,698440,'650100000000','乌鲁木齐市','新疆,乌鲁木齐','87.616848','43.825592',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (365,699583,1,698440,'650200000000','克拉玛依市','新疆,克拉玛依','84.889207','45.579888',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (366,699773,1,698440,'650400000000','吐鲁番市','新疆,吐鲁番','89.189655','42.951384',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (367,700070,1,698440,'650500000000','哈密市','新疆,哈密','93.514916','42.818501',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (368,700489,1,698440,'652300000000','昌吉回族自治州','新疆,昌吉','87.308224','44.011182',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (369,701559,1,698440,'652700000000','博尔塔拉蒙古自治州','新疆,博尔塔拉','82.066159','44.905588',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (370,702104,1,698440,'652800000000','巴音郭楞蒙古自治州','新疆,巴音郭楞','86.145298','41.764115',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (371,703119,1,698440,'652900000000','阿克苏地区','新疆,阿克苏','80.260605','41.168779',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (372,704779,1,698440,'653000000000','克孜勒苏柯尔克孜自治州','新疆,克孜勒苏','76.167819','39.714526',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (373,705145,1,698440,'653100000000','喀什地区','新疆,喀什','75.989755','39.470400',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (374,708117,1,698440,'653200000000','和田地区','新疆,和田','79.922211','37.114157',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (375,709792,1,698440,'654000000000','伊犁哈萨克自治州','新疆,伊犁','81.324136','43.916823',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (376,711218,1,698440,'654200000000','塔城地区','新疆,塔城','82.980316','46.745364',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (377,712893,1,698440,'654300000000','阿勒泰地区','新疆,阿勒泰','88.141253','47.844924',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (378,713697,1,698440,'659000000000','直辖县','新疆','87.627704','43.793026',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (385,714402,1,714401,'0','彰化县','台湾,彰化','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (386,717531,1,714401,'0','新北市','台湾,新北','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (387,719868,1,714401,'0','澎湖县','台湾,澎湖','119.566417','23.569733',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (388,720118,1,714401,'0','屏东县','台湾,屏东','120.487928','22.682802',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (389,722024,1,714401,'0','臺中市','台湾,臺中','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (390,725488,1,714401,'0','臺南市','台湾,臺南','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (391,727730,1,714401,'0','臺北市','台湾,臺北','121.517057','25.048074',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (392,729928,1,714401,'0','臺东县','台湾,臺东','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (393,730843,1,714401,'0','桃园市','台湾,桃园','121.083000','25.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (394,734179,1,714401,'0','宜兰县','台湾,宜兰','121.500000','24.600000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (395,736051,1,714401,'0','南投县','台湾,南投','120.830000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (396,737856,1,714401,'0','南海岛','台湾,南海岛','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (397,737861,1,714401,'0','苗栗县','台湾,苗栗','120.818985','24.561601',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (398,739957,1,714401,'0','嘉义市','台湾,嘉义','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (399,740510,1,714401,'0','嘉义县','台湾,嘉义','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (400,742126,1,714401,'0','新竹市','台湾,新竹','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (401,742636,1,714401,'0','新竹县','台湾,新竹','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (402,743938,1,714401,'0','花莲县','台湾,花莲','121.300000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (403,745674,1,714401,'0','高雄市','台湾,高雄','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (404,748553,1,714401,'0','基隆市','台湾,基隆','121.746248','25.130741',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (405,749571,1,714401,'0','金门县','台湾,金门','118.317089','24.432706',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (406,749930,1,714401,'0','连江县','台湾,连江','119.539704','26.197364',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (407,749957,1,714401,'0','云林县','台湾,云林','120.527173','23.696887',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (408,3,2,2,'110101000000','东城区','北京,东城','116.416357','39.928353',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (409,203,2,2,'110102000000','西城区','北京,西城','116.365868','39.912289',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (410,480,2,2,'110105000000','朝阳区','北京,朝阳','116.443108','39.921470',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (411,1122,2,2,'110106000000','丰台区','北京,丰台','116.287149','39.858427',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (412,1533,2,2,'110107000000','石景山区','北京,石景山','116.222982','39.906611',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (413,1692,2,2,'110108000000','海淀区','北京,海淀','116.298056','39.959912',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (414,2376,2,2,'110109000000','门头沟区','北京,门头沟','116.102009','39.940646',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (415,2689,2,2,'110111000000','房山区','北京,房山','116.143267','39.749144',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (416,3324,2,2,'110112000000','通州区','北京,通州','116.656435','39.909946',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (417,3927,2,2,'110113000000','顺义区','北京,顺义','116.654651','40.130347',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (418,4498,2,2,'110114000000','昌平区','北京,昌平','116.231204','40.220660',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (419,5042,2,2,'110115000000','大兴区','北京,大兴','116.341395','39.726929',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (420,5800,2,2,'110116000000','怀柔区','北京,怀柔','116.642349','40.315704',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (421,6138,2,2,'110117000000','平谷区','北京,平谷','117.121383','40.140701',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (422,6466,2,2,'110118000000','密云区','北京,密云','116.843177','40.376834',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (423,6921,2,2,'110119000000','延庆区','北京,延庆','115.974848','40.456951',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (424,7364,2,7363,'120101000000','和平区','天津,和平','117.214510','39.116949',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (425,7434,2,7363,'120102000000','河东区','天津,河东','117.251587','39.128291',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (426,7607,2,7363,'120103000000','河西区','天津,河西','117.223372','39.109563',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (427,7763,2,7363,'120104000000','南开区','天津,南开','117.150738','39.138203',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (428,7954,2,7363,'120105000000','河北区','天津,河北','117.200983','39.084158',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (429,8079,2,7363,'120106000000','红桥区','天津,红桥','117.151533','39.167345',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (430,8298,2,7363,'120110000000','东丽区','天津,东丽','117.314324','39.086569',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (431,8563,2,7363,'120111000000','西青区','天津,西青','117.008827','39.141152',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (432,8835,2,7363,'120112000000','津南区','天津,津南','117.357260','38.937928',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (433,9102,2,7363,'120113000000','北辰区','天津,北辰','117.135488','39.224792',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (434,9378,2,7363,'120114000000','武清区','天津,武清','117.044388','39.384119',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (435,10143,2,7363,'120115000000','宝坻区','天津,宝坻','117.309863','39.717379',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (436,10983,2,7363,'120116000000','滨海新区','天津,滨海','117.517969','38.719936',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (437,11454,2,7363,'120117000000','宁河区','天津,宁河','117.826625','39.329858',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (438,11795,2,7363,'120118000000','静海区','天津,静海','116.974130','38.947512',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (439,12251,2,7363,'120119000000','蓟州区','天津,蓟州','117.200983','39.084158',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (440,13269,2,13268,'130101000000','市辖区','河北,石家庄','114.514859','38.042306',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (441,13270,2,13268,'130102000000','长安区','河北,石家庄,长安','114.539060','38.036654',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (442,13444,2,13268,'130104000000','桥西区','河北,石家庄,桥西','114.461154','38.004043',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (443,13601,2,13268,'130105000000','新华区','河北,石家庄,新华','114.463347','38.051060',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (444,13728,2,13268,'130107000000','井陉矿区','河北,石家庄,井陉','114.145240','38.032148',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (445,13788,2,13268,'130108000000','裕华区','河北,石家庄,裕华','114.531362','38.006453',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (446,13895,2,13268,'130109000000','藁城区','河北,石家庄,藁城','114.847075','38.021567',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (447,14142,2,13268,'130110000000','鹿泉区','河北,石家庄,鹿泉','114.313724','38.085958',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (448,14377,2,13268,'130111000000','栾城区','河北,石家庄,栾城','114.648318','37.900200',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (449,14562,2,13268,'130121000000','井陉县','河北,石家庄,井陉','114.145240','38.032148',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (450,14902,2,13268,'130123000000','正定县','河北,石家庄,正定','114.570941','38.146445',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (451,15100,2,13268,'130125000000','行唐县','河北,石家庄,行唐','114.552692','38.438411',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (452,15447,2,13268,'130126000000','灵寿县','河北,石家庄,灵寿','114.382645','38.308628',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (453,15747,2,13268,'130127000000','高邑县','河北,石家庄,高邑','114.611433','37.615159',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (454,15860,2,13268,'130128000000','深泽县','河北,石家庄,深泽','115.200910','38.184072',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (455,15993,2,13268,'130129000000','赞皇县','河北,石家庄,赞皇','114.386155','37.665576',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (456,16218,2,13268,'130130000000','无极县','河北,石家庄,无极','114.976337','38.179141',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (457,16447,2,13268,'130131000000','平山县','河北,石家庄,平山','114.199134','38.247144',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (458,17188,2,13268,'130132000000','元氏县','河北,石家庄,元氏','114.525580','37.766651',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (459,17417,2,13268,'130133000000','赵县','河北,石家庄,赵县','114.776187','37.756498',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (460,17710,2,13268,'130183000000','晋州市','河北,石家庄,晋州','115.044185','38.033629',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (461,17945,2,13268,'130184000000','新乐市','河北,石家庄,新乐','114.684014','38.343296',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (462,18129,2,18128,'130201000000','市辖区','河北,唐山','118.180193','39.630867',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (463,18130,2,18128,'130202000000','路南区','河北,唐山,路南','118.154354','39.625059',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (464,18297,2,18128,'130203000000','路北区','河北,唐山,路北','118.200692','39.624437',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (465,18542,2,18128,'130204000000','古冶区','河北,唐山,古冶','118.447635','39.733578',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (466,18754,2,18128,'130205000000','开平区','河北,唐山,开平','118.261842','39.671001',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (467,18938,2,18128,'130207000000','丰南区','河北,唐山,丰南','118.085169','39.576031',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (468,19436,2,18128,'130208000000','丰润区','河北,唐山,丰润','118.162216','39.832582',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (469,19987,2,18128,'130209000000','曹妃甸区','河北,唐山,曹妃甸','118.460379','39.273070',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (470,20152,2,18128,'130223000000','滦县','河北,唐山,滦县','118.703598','39.740593',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (471,20696,2,18128,'130224000000','滦南县','河北,唐山,滦南','118.682379','39.518997',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (472,21321,2,18128,'130225000000','乐亭县','河北,唐山,乐亭','118.912571','39.425608',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (473,21825,2,18128,'130227000000','迁西县','河北,唐山,迁西','118.314715','40.141500',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (474,22273,2,18128,'130229000000','玉田县','河北,唐山,玉田','117.738658','39.900401',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (475,23067,2,18128,'130281000000','遵化市','河北,唐山,遵化','117.965892','40.189202',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (476,23787,2,18128,'130283000000','迁安市','河北,唐山,迁安','118.701144','39.999175',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (477,24372,2,24371,'130301000000','市辖区','河北,秦皇岛','119.600492','39.935385',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (478,24373,2,24371,'130302000000','海港区','河北,秦皇岛,海港','119.564962','39.947560',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (479,24760,2,24371,'130303000000','山海关区','河北,秦皇岛,山海关','119.775799','39.978849',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (480,24891,2,24371,'130304000000','北戴河区','河北,秦皇岛,北戴河','119.488914','39.834751',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (481,24951,2,24371,'130306000000','抚宁区','河北,秦皇岛,抚宁','119.244848','39.876254',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (482,25332,2,24371,'130321000000','青龙满族自治县','河北,秦皇岛,青龙','118.949684','40.407578',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (483,25758,2,24371,'130322000000','昌黎县','河北,秦皇岛,昌黎','119.162694','39.712813',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (484,26216,2,24371,'130324000000','卢龙县','河北,秦皇岛,卢龙','118.892986','39.891947',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (485,26780,2,26779,'130401000000','市辖区','河北,邯郸','114.538961','36.625657',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (486,26781,2,26779,'130402000000','邯山区','河北,邯郸,邯山','114.490431','36.580358',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (487,26877,2,26779,'130403000000','丛台区','河北,邯郸,丛台','114.492897','36.636410',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (488,27018,2,26779,'130404000000','复兴区','河北,邯郸,复兴','114.462058','36.639022',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (489,27135,2,26779,'130406000000','峰峰矿区','河北,邯郸,峰峰','114.214634','36.472281',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (490,27372,2,26779,'130421000000','邯郸县','河北,邯郸,邯郸','114.530925','36.593881',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (491,27538,2,26779,'130423000000','临漳县','河北,邯郸,临漳','114.619544','36.335300',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (492,27978,2,26779,'130424000000','成安县','河北,邯郸,成安','114.670032','36.444317',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (493,28222,2,26779,'130425000000','大名县','河北,邯郸,大名','115.147814','36.285616',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (494,28894,2,26779,'130426000000','涉县','河北,邯郸,涉县','113.691401','36.584995',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (495,29226,2,26779,'130427000000','磁县','河北,邯郸,磁县','114.373947','36.374012',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (496,29613,2,26779,'130428000000','肥乡县','河北,邯郸,肥乡','114.800166','36.548132',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (497,29888,2,26779,'130429000000','永年县','河北,邯郸,永年','114.543804','36.744120',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (498,30335,2,26779,'130430000000','邱县','河北,邯郸,邱县','115.186792','36.811133',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (499,30568,2,26779,'130431000000','鸡泽县','河北,邯郸,鸡泽','114.878299','36.920350',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (500,30747,2,26779,'130432000000','广平县','河北,邯郸,广平','114.948607','36.483484',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (501,30924,2,26779,'130433000000','馆陶县','河北,邯郸,馆陶','115.282468','36.547557',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (502,31210,2,26779,'130434000000','魏县','河北,邯郸,魏县','114.938921','36.359869',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (503,31793,2,26779,'130435000000','曲周县','河北,邯郸,曲周','114.945113','36.780175',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (504,32146,2,26779,'130481000000','武安市','河北,邯郸,武安','114.203697','36.696506',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (505,32689,2,32688,'130501000000','市辖区','河北,邢台','114.504844','37.070589',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (506,32690,2,32688,'130502000000','桥东区','河北,邢台,桥东','114.507254','37.068017',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (507,32795,2,32688,'130503000000','桥西区','河北,邢台,桥西','114.468435','37.059882',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (508,32922,2,32688,'130521000000','邢台县','河北,邢台,邢台','114.561132','37.050730',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (509,33459,2,32688,'130522000000','临城县','河北,邢台,临城','114.498762','37.444499',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (510,33688,2,32688,'130523000000','内丘县','河北,邢台,内丘','114.512128','37.286669',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (511,34011,2,32688,'130524000000','柏乡县','河北,邢台,柏乡','114.693426','37.482423',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (512,34139,2,32688,'130525000000','隆尧县','河北,邢台,隆尧','114.770419','37.350173',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (513,34431,2,32688,'130526000000','任县','河北,邢台,任县','114.671936','37.120983',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (514,34635,2,32688,'130527000000','南和县','河北,邢台,南和','114.683762','37.005041',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (515,34866,2,32688,'130528000000','宁晋县','河北,邢台,宁晋','114.919301','37.619886',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (516,35240,2,32688,'130529000000','巨鹿县','河北,邢台,巨鹿','115.037478','37.221112',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (517,35542,2,32688,'130530000000','新河县','河北,邢台,新河','115.242070','37.528719',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (518,35718,2,32688,'130531000000','广宗县','河北,邢台,广宗','115.142607','37.074660',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (519,35940,2,32688,'130532000000','平乡县','河北,邢台,平乡','115.030076','37.063148',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (520,36202,2,32688,'130533000000','威县','河北,邢台,威县','115.266780','36.975377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (521,36748,2,32688,'130534000000','清河县','河北,邢台,清河','115.667576','37.040087',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (522,37086,2,32688,'130535000000','临西县','河北,邢台,临西','115.501048','36.870813',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (523,37403,2,32688,'130581000000','南宫市','河北,邢台,南宫','115.408748','37.359264',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (524,37883,2,32688,'130582000000','沙河市','河北,邢台,沙河','114.503335','36.854922',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (525,38161,2,38160,'130601000000','市辖区','河北,保定','115.464806','38.873891',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (526,38162,2,38160,'130602000000','竞秀区','河北,保定,竞秀','115.458669','38.877561',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (527,38327,2,38160,'130606000000','莲池区','河北,保定,莲池','115.497342','38.883209',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (528,38578,2,38160,'130607000000','满城区','河北,保定,满城','115.322351','38.948955',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (529,38786,2,38160,'130608000000','清苑区','河北,保定,清苑','115.489968','38.765041',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (530,39082,2,38160,'130609000000','徐水区','河北,保定,徐水','115.655778','39.018737',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (531,39426,2,38160,'130623000000','涞水县','河北,保定,涞水','115.713905','39.394317',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (532,39736,2,38160,'130624000000','阜平县','河北,保定,阜平','114.195104','38.849152',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (533,39960,2,38160,'130626000000','定兴县','河北,保定,定兴','115.808175','39.263018',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (534,40258,2,38160,'130627000000','唐县','河北,保定,唐县','114.982972','38.748204',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (535,40632,2,38160,'130628000000','高阳县','河北,保定,高阳','115.778965','38.700088',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (536,40825,2,38160,'130629000000','容城县','河北,保定,容城','115.861657','39.042784',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (537,40961,2,38160,'130630000000','涞源县','河北,保定,涞源','114.694284','39.360247',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (538,41272,2,38160,'130631000000','望都县','河北,保定,望都','115.154511','38.695736',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (539,41433,2,38160,'130632000000','安新县','河北,保定,安新','115.935603','38.935369',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (540,41658,2,38160,'130633000000','易县','河北,保定,易县','115.497457','39.349393',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (541,42155,2,38160,'130634000000','曲阳县','河北,保定,曲阳','114.744926','38.622244',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (542,42550,2,38160,'130635000000','蠡县','河北,保定,蠡县','115.583855','38.488056',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (543,42802,2,38160,'130636000000','顺平县','河北,保定,顺平','115.135470','38.837487',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (544,43054,2,38160,'130637000000','博野县','河北,保定,博野','115.464380','38.457364',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (545,43196,2,38160,'130638000000','雄县','河北,保定,雄县','116.108650','38.994550',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (546,43441,2,38160,'130681000000','涿州市','河北,保定,涿州','115.974422','39.485283',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (547,43905,2,38160,'130683000000','安国市','河北,保定,安国','115.326647','38.418440',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (548,44124,2,38160,'130684000000','高碑店市','河北,保定,高碑店','115.873758','39.326521',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (549,44571,2,44570,'130701000000','市辖区','河北,张家口','114.887543','40.824418',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (550,44572,2,44570,'130702000000','桥东区','河北,张家口,桥东','114.894341','40.788457',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (551,44634,2,44570,'130703000000','桥西区','河北,张家口,桥西','114.869407','40.819564',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (552,44704,2,44570,'130705000000','宣化区','河北,张家口,宣化','115.099510','40.608726',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (553,45133,2,44570,'130706000000','下花园区','河北,张家口,下花园','115.287352','40.502652',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (554,45197,2,44570,'130708000000','万全区','河北,张家口,万全','114.740560','40.766898',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (555,45395,2,44570,'130709000000','崇礼区','河北,张家口,崇礼','115.282669','40.974676',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (556,45623,2,44570,'130722000000','张北县','河北,张家口,张北','114.720086','41.158557',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (557,46018,2,44570,'130723000000','康保县','河北,张家口,康保','114.600404','41.852368',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (558,46371,2,44570,'130724000000','沽源县','河北,张家口,沽源','115.688692','41.669668',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (559,46619,2,44570,'130725000000','尚义县','河北,张家口,尚义','113.969619','41.076227',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (560,46812,2,44570,'130726000000','蔚县','河北,张家口,蔚县','114.588903','39.840843',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (561,47396,2,44570,'130727000000','阳原县','河北,张家口,阳原','114.150388','40.103742',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (562,47718,2,44570,'130728000000','怀安县','河北,张家口,怀安','114.385791','40.674193',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (563,48013,2,44570,'130730000000','怀来县','河北,张家口,怀来','115.517862','40.415343',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (564,48331,2,44570,'130731000000','涿鹿县','河北,张家口,涿鹿','115.205345','40.379563',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (565,48731,2,44570,'130732000000','赤城县','河北,张家口,赤城','115.831499','40.912921',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (566,49191,2,49190,'130801000000','市辖区','河北,承德','117.962410','40.954071',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (567,49192,2,49190,'130802000000','双桥区','河北,承德,双桥','117.943348','40.974650',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (568,49328,2,49190,'130803000000','双滦区','河北,承德,双滦','117.799912','40.959196',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (569,49425,2,49190,'130804000000','鹰手营子矿区','河北,承德,鹰手营子','117.663471','40.546436',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (570,49456,2,49190,'130821000000','承德县','河北,承德,承德','118.173825','40.768238',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (571,49866,2,49190,'130822000000','兴隆县','河北,承德,兴隆','117.500558','40.417358',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (572,50185,2,49190,'130823000000','平泉县','河北,承德,平泉','118.701951','41.018405',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (573,50455,2,49190,'130824000000','滦平县','河北,承德,滦平','117.332801','40.941482',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (574,50690,2,49190,'130825000000','隆化县','河北,承德,隆化','117.738938','41.313791',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (575,51081,2,49190,'130826000000','丰宁满族自治县','河北,承德,丰宁','117.962410','40.954071',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (576,51428,2,49190,'130827000000','宽城满族自治县','河北,承德,宽城','118.485313','40.611391',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (577,51657,2,49190,'130828000000','围场满族蒙古族自治县','河北,承德,围场','117.760159','41.938529',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (578,52019,2,52018,'130901000000','市辖区','河北,沧州','116.838834','38.304477',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (579,52020,2,52018,'130902000000','新华区','河北,沧州,新华','116.866284','38.314416',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (580,52086,2,52018,'130903000000','运河区','河北,沧州,运河','116.832276','38.310143',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (581,52214,2,52018,'130921000000','沧县','河北,沧州,沧县','117.007478','38.219856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (582,52753,2,52018,'130922000000','青县','河北,沧州,青县','116.804306','38.583021',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (583,53128,2,52018,'130923000000','东光县','河北,沧州,东光','116.537067','37.888248',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (584,53595,2,52018,'130924000000','海兴县','河北,沧州,海兴','117.496606','38.141582',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (585,53810,2,52018,'130925000000','盐山县','河北,沧州,盐山','117.230603','38.058088',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (586,54277,2,52018,'130926000000','肃宁县','河北,沧州,肃宁','115.829758','38.422802',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (587,54547,2,52018,'130927000000','南皮县','河北,沧州,南皮','116.708104','38.038584',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (588,54875,2,52018,'130928000000','吴桥县','河北,沧州,吴桥','116.391508','37.627661',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (589,55369,2,52018,'130929000000','献县','河北,沧州,献县','116.122802','38.190144',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (590,55902,2,52018,'130930000000','孟村回族自治县','河北,沧州,孟村','117.104298','38.053409',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (591,56037,2,52018,'130981000000','泊头市','河北,沧州,泊头','116.578368','38.083437',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (592,56764,2,52018,'130982000000','任丘市','河北,沧州,任丘','116.082918','38.683592',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (593,57238,2,52018,'130983000000','黄骅市','河北,沧州,黄骅','117.330048','38.371383',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (594,57596,2,52018,'130984000000','河间市','河北,沧州,河间','116.099518','38.446624',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (595,58248,2,58247,'131001000000','市辖区','河北,廊坊','116.683752','39.538047',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (596,58249,2,58247,'131002000000','安次区','河北,廊坊,安次','116.694544','39.502569',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (597,58567,2,58247,'131003000000','广阳区','河北,廊坊,广阳','116.710690','39.522786',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (598,58789,2,58247,'131022000000','固安县','河北,廊坊,固安','116.298657','39.438214',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (599,59228,2,58247,'131023000000','永清县','河北,廊坊,永清','116.499028','39.321794',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (600,59639,2,58247,'131024000000','香河县','河北,廊坊,香河','117.006093','39.761424',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (601,59963,2,58247,'131025000000','大城县','河北,廊坊,大城','116.653794','38.705449',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (602,60378,2,58247,'131026000000','文安县','河北,廊坊,文安','116.457858','38.873281',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (603,60784,2,58247,'131028000000','大厂回族自治县','河北,廊坊,大厂','116.970154','39.897785',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (604,60904,2,58247,'131081000000','霸州市','河北,廊坊,霸州','116.391386','39.125898',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (605,61311,2,58247,'131082000000','三河市','河北,廊坊,三河','117.078295','39.982718',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (606,61805,2,61804,'131101000000','市辖区','河北,衡水','115.670177','37.738920',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (607,61806,2,61804,'131102000000','桃城区','河北,衡水,桃城','115.675422','37.735369',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (608,62086,2,61804,'131103000000','冀州区','河北,衡水,冀州','115.670177','37.738920',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (609,62479,2,61804,'131121000000','枣强县','河北,衡水,枣强','115.724260','37.513417',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (610,63050,2,61804,'131122000000','武邑县','河北,衡水,武邑','115.887655','37.801658',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (611,63584,2,61804,'131123000000','武强县','河北,衡水,武强','115.982461','38.041368',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (612,63832,2,61804,'131124000000','饶阳县','河北,衡水,饶阳','115.725833','38.235892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (613,64040,2,61804,'131125000000','安平县','河北,衡水,安平','115.519216','38.234510',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (614,64281,2,61804,'131126000000','故城县','河北,衡水,故城','115.965874','37.347410',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (615,64833,2,61804,'131127000000','景县','河北,衡水,景县','116.270648','37.692290',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (616,65702,2,61804,'131128000000','阜城县','河北,衡水,阜城','116.144418','37.868872',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (617,66323,2,61804,'131182000000','深州市','河北,衡水,深州','115.559574','38.001536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (618,66814,2,66813,'139001000000','定州市','河北,定州','114.990159','38.516174',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (619,67371,2,66813,'139002000000','辛集市','河北,辛集','115.218057','37.943315',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (620,67749,2,67748,'140101000000','市辖区','山西,太原','112.548879','37.870590',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (621,67750,2,67748,'140105000000','小店区','山西,太原,小店','112.565659','37.736526',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (622,67921,2,67748,'140106000000','迎泽区','山西,太原,迎泽','112.563400','37.863451',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (623,68043,2,67748,'140107000000','杏花岭区','山西,太原,杏花岭','112.570605','37.893955',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (624,68203,2,67748,'140108000000','尖草坪区','山西,太原,尖草坪','112.486691','37.940387',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (625,68368,2,67748,'140109000000','万柏林区','山西,太原,万柏林','112.515748','37.859447',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (626,68542,2,67748,'140110000000','晋源区','山西,太原,晋源','112.477940','37.715193',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (627,68671,2,67748,'140121000000','清徐县','山西,太原,清徐','112.358667','37.607443',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (628,68893,2,67748,'140122000000','阳曲县','山西,太原,阳曲','112.672953','38.058489',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (629,69032,2,67748,'140123000000','娄烦县','山西,太原,娄烦','111.797083','38.067932',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (630,69190,2,67748,'140181000000','古交市','山西,太原,古交','112.175875','37.907109',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (631,69391,2,69390,'140201000000','市辖区','山西,大同','113.612440','40.040295',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (632,69392,2,69390,'140202000000','城区','山西,大同,城区','113.298027','40.075667',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (633,69546,2,69390,'140203000000','矿区','山西,大同,矿区','113.612440','40.040295',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (634,69691,2,69390,'140211000000','南郊区','山西,大同,南郊','113.149693','40.005405',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (635,69891,2,69390,'140212000000','新荣区','山西,大同,新荣','113.140005','40.255866',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (636,70045,2,69390,'140221000000','阳高县','山西,大同,阳高','113.748945','40.361060',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (637,70336,2,69390,'140222000000','天镇县','山西,大同,天镇','114.090867','40.420237',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (638,70582,2,69390,'140223000000','广灵县','山西,大同,广灵','114.282758','39.760281',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (639,70778,2,69390,'140224000000','灵丘县','山西,大同,灵丘','114.234350','39.442406',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (640,71059,2,69390,'140225000000','浑源县','山西,大同,浑源','113.699475','39.693407',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (641,71402,2,69390,'140226000000','左云县','山西,大同,左云','112.703008','40.013442',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (642,71649,2,69390,'140227000000','大同县','山西,大同,大同','113.397170','40.067276',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (643,71851,2,71850,'140301000000','市辖区','山西,阳泉','113.580519','37.856971',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (644,71852,2,71850,'140302000000','城区','山西,阳泉,城区','113.600670','37.847437',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (645,71905,2,71850,'140303000000','矿区','山西,阳泉,矿区','113.580519','37.856971',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (646,71950,2,71850,'140311000000','郊区','山西,阳泉,郊区','113.594164','37.944679',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (647,72145,2,71850,'140321000000','平定县','山西,阳泉,平定','113.657841','37.786653',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (648,72497,2,71850,'140322000000','盂县','山西,阳泉,盂县','113.412330','38.085619',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (649,72976,2,72975,'140401000000','市辖区','山西,长治','113.116255','36.195386',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (650,72977,2,72975,'140402000000','城区','山西,长治,城区','113.123085','36.203519',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (651,73071,2,72975,'140411000000','郊区','山西,长治,郊区','113.101211','36.218388',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (652,73222,2,72975,'140421000000','长治县','山西,长治,长治','113.051407','36.052858',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (653,73495,2,72975,'140423000000','襄垣县','山西,长治,襄垣','113.051491','36.535817',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (654,73840,2,72975,'140424000000','屯留县','山西,长治,屯留','112.892151','36.315929',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (655,74151,2,72975,'140425000000','平顺县','山西,长治,平顺','113.435961','36.200179',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (656,74429,2,72975,'140426000000','黎城县','山西,长治,黎城','113.387155','36.502328',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (657,74694,2,72975,'140427000000','壶关县','山西,长治,壶关','113.207049','36.115449',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (658,75101,2,72975,'140428000000','长子县','山西,长治,长子','112.877900','36.122334',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (659,75515,2,72975,'140429000000','武乡县','山西,长治,武乡','112.864562','36.837625',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (660,75911,2,72975,'140430000000','沁县','山西,长治,沁县','112.699226','36.756064',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (661,76237,2,72975,'140431000000','沁源县','山西,长治,沁源','112.337446','36.500200',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (662,76512,2,72975,'140481000000','潞城市','山西,长治,潞城','113.228852','36.334104',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (663,76727,2,76726,'140501000000','市辖区','山西,晋城','112.851831','35.490701',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (664,76728,2,76726,'140502000000','城区','山西,晋城,城区','112.853555','35.501572',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (665,76874,2,76726,'140521000000','沁水县','山西,晋城,沁水','112.186739','35.690141',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (666,77140,2,76726,'140522000000','阳城县','山西,晋城,阳城','112.414738','35.486029',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (667,77632,2,76726,'140524000000','陵川县','山西,晋城,陵川','113.280688','35.775685',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (668,78024,2,76726,'140525000000','泽州县','山西,晋城,泽州','112.899137','35.617221',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (669,78678,2,76726,'140581000000','高平市','山西,晋城,高平','112.923920','35.797997',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (670,79164,2,79163,'140601000000','市辖区','山西,朔州','112.432825','39.331595',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (671,79165,2,79163,'140602000000','朔城区','山西,朔州,朔城','112.432250','39.318940',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (672,79533,2,79163,'140603000000','平鲁区','山西,朔州,平鲁','112.288331','39.512155',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (673,79843,2,79163,'140621000000','山阴县','山西,朔州,山阴','112.816600','39.526227',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (674,80134,2,79163,'140622000000','应县','山西,朔州,应县','113.191099','39.554247',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (675,80454,2,79163,'140623000000','右玉县','山西,朔州,右玉','112.466989','39.989064',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (676,80799,2,79163,'140624000000','怀仁县','山西,朔州,怀仁','113.099958','39.827916',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (677,81001,2,81000,'140701000000','市辖区','山西,晋中','112.752694','37.687024',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (678,81002,2,81000,'140702000000','榆次区','山西,晋中,榆次','112.708241','37.697792',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (679,81361,2,81000,'140721000000','榆社县','山西,晋中,榆社','112.975287','37.070788',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (680,81649,2,81000,'140722000000','左权县','山西,晋中,左权','113.379372','37.082681',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (681,81872,2,81000,'140723000000','和顺县','山西,晋中,和顺','113.570438','37.329664',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (682,82183,2,81000,'140724000000','昔阳县','山西,晋中,昔阳','113.706875','37.611210',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (683,82535,2,81000,'140725000000','寿阳县','山西,晋中,寿阳','113.176434','37.895325',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (684,82765,2,81000,'140726000000','太谷县','山西,晋中,太谷','112.551357','37.421308',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (685,82986,2,81000,'140727000000','祁县','山西,晋中,祁县','112.335297','37.358317',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (686,83165,2,81000,'140728000000','平遥县','山西,晋中,平遥','112.176273','37.189559',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (687,83472,2,81000,'140729000000','灵石县','山西,晋中,灵石','111.778685','36.847860',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (688,83810,2,81000,'140781000000','介休市','山西,晋中,介休','111.916712','37.026945',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (689,84093,2,84092,'140801000000','市辖区','山西,运城','111.007528','35.026412',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (690,84094,2,84092,'140802000000','盐湖区','山西,运城,盐湖','111.007528','35.026412',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (691,84483,2,84092,'140821000000','临猗县','山西,运城,临猗','110.774547','35.144277',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (692,84893,2,84092,'140822000000','万荣县','山西,运城,万荣','110.838024','35.415254',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (693,85194,2,84092,'140823000000','闻喜县','山西,运城,闻喜','111.224720','35.356644',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (694,85569,2,84092,'140824000000','稷山县','山西,运城,稷山','110.983333','35.604025',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (695,85780,2,84092,'140825000000','新绛县','山西,运城,新绛','111.224778','35.616288',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (696,86023,2,84092,'140826000000','绛县','山西,运城,绛县','111.568236','35.491190',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (697,86238,2,84092,'140827000000','垣曲县','山西,运城,垣曲','111.669917','35.297620',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (698,86448,2,84092,'140828000000','夏县','山西,运城,夏县','111.220456','35.141363',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (699,86706,2,84092,'140829000000','平陆县','山西,运城,平陆','111.194133','34.829260',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (700,86949,2,84092,'140830000000','芮城县','山西,运城,芮城','110.694369','34.693580',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (701,87129,2,84092,'140881000000','永济市','山西,运城,永济','110.447549','34.867050',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (702,87434,2,84092,'140882000000','河津市','山西,运城,河津','110.712063','35.596383',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (703,87614,2,87613,'140901000000','市辖区','山西,忻州','112.734174','38.416663',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (704,87615,2,87613,'140902000000','忻府区','山西,忻州,忻府','112.746046','38.404243',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (705,88061,2,87613,'140921000000','定襄县','山西,忻州,定襄','112.957215','38.473548',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (706,88227,2,87613,'140922000000','五台县','山西,忻州,五台','113.255309','38.728315',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (707,88754,2,87613,'140923000000','代县','山西,忻州,代县','112.960282','39.066917',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (708,89144,2,87613,'140924000000','繁峙县','山西,忻州,繁峙','113.265564','39.188811',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (709,89570,2,87613,'140925000000','宁武县','山西,忻州,宁武','112.304722','39.001524',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (710,90066,2,87613,'140926000000','静乐县','山西,忻州,静乐','111.939440','38.359036',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (711,90462,2,87613,'140927000000','神池县','山西,忻州,神池','112.211297','39.090553',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (712,90715,2,87613,'140928000000','五寨县','山西,忻州,五寨','111.846905','38.910726',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (713,90978,2,87613,'140929000000','岢岚县','山西,忻州,岢岚','111.572850','38.704180',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (714,91193,2,87613,'140930000000','河曲县','山西,忻州,河曲','111.138472','39.384482',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (715,91548,2,87613,'140931000000','保德县','山西,忻州,保德','111.086564','39.022488',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (716,91912,2,87613,'140932000000','偏关县','山西,忻州,偏关','111.508831','39.436306',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (717,92172,2,87613,'140981000000','原平市','山西,忻州,原平','112.711059','38.731402',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (718,92739,2,92738,'141001000000','市辖区','山西,临汾','111.518976','36.088005',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (719,92740,2,92738,'141002000000','尧都区','山西,临汾,尧都','111.579554','36.078841',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (720,93208,2,92738,'141021000000','曲沃县','山西,临汾,曲沃','111.475861','35.641087',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (721,93375,2,92738,'141022000000','翼城县','山西,临汾,翼城','111.718951','35.738576',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (722,93604,2,92738,'141023000000','襄汾县','山西,临汾,襄汾','111.441725','35.876293',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (723,93972,2,92738,'141024000000','洪洞县','山西,临汾,洪洞','111.674966','36.253748',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (724,94457,2,92738,'141025000000','古县','山西,临汾,古县','111.920466','36.266914',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (725,94580,2,92738,'141026000000','安泽县','山西,临汾,安泽','112.250144','36.147787',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (726,94696,2,92738,'141027000000','浮山县','山西,临汾,浮山','111.848883','35.968124',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (727,94893,2,92738,'141028000000','吉县','山西,临汾,吉县','110.681763','36.098188',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (728,94981,2,92738,'141029000000','乡宁县','山西,临汾,乡宁','110.847021','35.970389',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (729,95181,2,92738,'141030000000','大宁县','山西,临汾,大宁','110.752903','36.465133',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (730,95272,2,92738,'141031000000','隰县','山西,临汾,隰县','110.940638','36.693331',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (731,95381,2,92738,'141032000000','永和县','山西,临汾,永和','110.632007','36.759507',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (732,95472,2,92738,'141033000000','蒲县','山西,临汾,蒲县','111.096439','36.411827',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (733,95579,2,92738,'141034000000','汾西县','山西,临汾,汾西','111.563951','36.652854',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (734,95715,2,92738,'141081000000','侯马市','山西,临汾,侯马','111.372002','35.619105',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (735,95828,2,92738,'141082000000','霍州市','山西,临汾,霍州','111.755398','36.568931',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (736,96065,2,96064,'141101000000','市辖区','山西,吕梁','111.144319','37.518314',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (737,96066,2,96064,'141102000000','离石区','山西,吕梁,离石','111.150733','37.517641',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (738,96332,2,96064,'141121000000','文水县','山西,吕梁,文水','112.028866','37.438102',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (739,96548,2,96064,'141122000000','交城县','山西,吕梁,交城','112.155841','37.551970',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (740,96711,2,96064,'141123000000','兴县','山西,吕梁,兴县','111.127668','38.462390',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (741,97113,2,96064,'141124000000','临县','山西,吕梁,临县','110.992094','37.950758',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (742,97779,2,96064,'141125000000','柳林县','山西,吕梁,柳林','110.889071','37.429832',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (743,98056,2,96064,'141126000000','石楼县','山西,吕梁,石楼','110.834561','36.997412',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (744,98201,2,96064,'141127000000','岚县','山西,吕梁,岚县','111.671917','38.279299',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (745,98383,2,96064,'141128000000','方山县','山西,吕梁,方山','111.244098','37.894631',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (746,98562,2,96064,'141129000000','中阳县','山西,吕梁,中阳','111.179657','37.357058',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (747,98670,2,96064,'141130000000','交口县','山西,吕梁,交口','111.181151','36.982186',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (748,98774,2,96064,'141181000000','孝义市','山西,吕梁,孝义','111.778818','37.146294',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (749,99219,2,96064,'141182000000','汾阳市','山西,吕梁,汾阳','111.769894','37.261564',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (750,99539,2,99538,'150101000000','市辖区','内蒙古,呼和浩特','111.749180','40.842585',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (751,99540,2,99538,'150102000000','新城区','内蒙古,呼和浩特,新城','111.665544','40.858289',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (752,99624,2,99538,'150103000000','回民区','内蒙古,呼和浩特,回民','111.623692','40.808608',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (753,99696,2,99538,'150104000000','玉泉区','内蒙古,呼和浩特,玉泉','111.673881','40.753655',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (754,99807,2,99538,'150105000000','赛罕区','内蒙古,呼和浩特,赛罕','111.701857','40.792097',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (755,100011,2,99538,'150121000000','土默特左旗','内蒙古,呼和浩特,土默特左旗','111.163902','40.729573',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (756,100358,2,99538,'150122000000','托克托县','内蒙古,呼和浩特,托克托','111.194313','40.277431',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (757,100502,2,99538,'150123000000','和林格尔县','内蒙古,呼和浩特,和林格尔','111.821843','40.378787',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (758,100672,2,99538,'150124000000','清水河县','内蒙古,呼和浩特,清水河','111.647609','39.921095',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (759,100790,2,99538,'150125000000','武川县','内蒙古,呼和浩特,武川','111.451303','41.096471',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (760,100905,2,100904,'150201000000','市辖区','内蒙古,包头','109.840347','40.657449',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (761,100906,2,100904,'150202000000','东河区','内蒙古,包头,东河','110.044142','40.575948',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (762,101033,2,100904,'150203000000','昆都仑区','内蒙古,包头,昆都仑','109.838178','40.642236',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (763,101148,2,100904,'150204000000','青山区','内蒙古,包头,青山','109.901572','40.643246',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (764,101235,2,100904,'150205000000','石拐区','内蒙古,包头,石拐','110.060686','40.676645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (765,101268,2,100904,'150206000000','白云鄂博矿区','内蒙古,包头,白云鄂博','109.840347','40.657449',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (766,101275,2,100904,'150207000000','九原区','内蒙古,包头,九原','109.968122','40.600581',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (767,101359,2,100904,'150221000000','土默特右旗','内蒙古,包头,土默特右旗','110.524263','40.569426',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (768,101583,2,100904,'150222000000','固阳县','内蒙古,包头,固阳','110.060514','41.034106',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (769,101673,2,100904,'150223000000','达尔罕茂明安联合旗','内蒙古,包头,达尔罕茂明安联合旗','110.432626','41.698992',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (770,101773,2,101772,'150301000000','市辖区','内蒙古,乌海','106.794249','39.655388',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (771,101774,2,101772,'150302000000','海勃湾区','内蒙古,乌海,海勃湾','106.822779','39.691156',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (772,101824,2,101772,'150303000000','海南区','内蒙古,乌海,海南','106.891424','39.441364',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (773,101850,2,101772,'150304000000','乌达区','内蒙古,乌海,乌达','106.726099','39.505925',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (774,101885,2,101884,'150401000000','市辖区','内蒙古,赤峰','118.886856','42.257817',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (775,101886,2,101884,'150402000000','红山区','内蒙古,赤峰,红山','118.955528','42.295818',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (776,101986,2,101884,'150403000000','元宝山区','内蒙古,赤峰,元宝山','119.288611','42.038902',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (777,102110,2,101884,'150404000000','松山区','内蒙古,赤峰,松山','118.931962','42.286873',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (778,102434,2,101884,'150421000000','阿鲁科尔沁旗','内蒙古,赤峰,阿鲁科尔沁旗','120.065700','43.872299',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (779,102714,2,101884,'150422000000','巴林左旗','内蒙古,赤峰,巴林左旗','119.379490','43.971126',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (780,102913,2,101884,'150423000000','巴林右旗','内蒙古,赤峰,巴林右旗','118.665180','43.534414',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (781,103097,2,101884,'150424000000','林西县','内蒙古,赤峰,林西','118.055450','43.618120',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (782,103225,2,101884,'150425000000','克什克腾旗','内蒙古,赤峰,克什克腾旗','117.545798','43.264989',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (783,103385,2,101884,'150426000000','翁牛特旗','内蒙古,赤峰,翁牛特旗','119.006580','42.936188',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (784,103647,2,101884,'150428000000','喀喇沁旗','内蒙古,赤峰,喀喇沁旗','118.701938','41.927364',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (785,103835,2,101884,'150429000000','宁城县','内蒙古,赤峰,宁城','119.318876','41.601375',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (786,104189,2,101884,'150430000000','敖汉旗','内蒙古,赤峰,敖汉旗','119.921604','42.290782',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (787,104458,2,104457,'150501000000','市辖区','内蒙古,通辽','122.243444','43.652890',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (788,104459,2,104457,'150502000000','科尔沁区','内蒙古,通辽,科尔沁','122.255675','43.623077',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (789,104954,2,104457,'150521000000','科尔沁左翼中旗','内蒙古,通辽,科尔沁左翼中旗','123.312265','44.126626',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (790,105531,2,104457,'150522000000','科尔沁左翼后旗','内蒙古,通辽,科尔沁左翼后旗','122.356749','42.935159',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (791,105865,2,104457,'150523000000','开鲁县','内蒙古,通辽,开鲁','121.319309','43.601244',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (792,106150,2,104457,'150524000000','库伦旗','内蒙古,通辽,库伦旗','121.810701','42.735657',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (793,106356,2,104457,'150525000000','奈曼旗','内蒙古,通辽,奈曼旗','120.658283','42.867226',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (794,106746,2,104457,'150526000000','扎鲁特旗','内蒙古,通辽,扎鲁特旗','120.911676','44.556389',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (795,107028,2,104457,'150581000000','霍林郭勒市','内蒙古,通辽,霍林郭勒','119.663534','45.531726',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (796,107066,2,107065,'150601000000','市辖区','内蒙古,鄂尔多斯','109.781327','39.608266',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (797,107067,2,107065,'150602000000','东胜区','内蒙古,鄂尔多斯,东胜','109.963339','39.822507',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (798,107193,2,107065,'150603000000','康巴什区','内蒙古,鄂尔多斯,康巴什','109.999325','39.809941',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (799,107213,2,107065,'150621000000','达拉特旗','内蒙古,鄂尔多斯,达拉特旗','110.033833','40.412438',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (800,107388,2,107065,'150622000000','准格尔旗','内蒙古,鄂尔多斯,准格尔旗','111.240171','39.864362',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (801,107593,2,107065,'150623000000','鄂托克前旗','内蒙古,鄂尔多斯,鄂托克前旗','107.477515','38.182362',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (802,107684,2,107065,'150624000000','鄂托克旗','内蒙古,鄂尔多斯,鄂托克旗','107.976161','39.089650',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (803,107792,2,107065,'150625000000','杭锦旗','内蒙古,鄂尔多斯,杭锦旗','108.736208','39.833309',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (804,107892,2,107065,'150626000000','乌审旗','内蒙古,鄂尔多斯,乌审旗','108.817607','38.604136',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (805,107982,2,107065,'150627000000','伊金霍洛旗','内蒙古,鄂尔多斯,伊金霍洛旗','109.747740','39.564660',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (806,108167,2,108166,'150701000000','市辖区','内蒙古,呼伦贝尔','119.765744','49.211574',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (807,108168,2,108166,'150702000000','海拉尔区','内蒙古,呼伦贝尔,海拉尔','119.736279','49.212189',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (808,108232,2,108166,'150703000000','扎赉诺尔区','内蒙古,呼伦贝尔,扎赉诺尔','117.670248','49.510375',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (809,108260,2,108166,'150721000000','阿荣旗','内蒙古,呼伦贝尔,阿荣旗','123.459050','48.126585',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (810,108483,2,108166,'150722000000','莫力达瓦达斡尔族自治旗','内蒙古,呼伦贝尔,莫力达瓦','123.810423','48.852112',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (811,108785,2,108166,'150723000000','鄂伦春自治旗','内蒙古,呼伦贝尔,鄂伦春自治旗','123.726201','50.591842',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (812,109030,2,108166,'150724000000','鄂温克族自治旗','内蒙古,呼伦贝尔,鄂温克族自治旗','119.755213','49.146588',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (813,109113,2,108166,'150725000000','陈巴尔虎旗','内蒙古,呼伦贝尔,陈巴尔虎旗','119.424026','49.328916',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (814,109205,2,108166,'150726000000','新巴尔虎左旗','内蒙古,呼伦贝尔,新巴尔虎左旗','118.269820','48.218241',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (815,109281,2,108166,'150727000000','新巴尔虎右旗','内蒙古,呼伦贝尔,新巴尔虎右旗','116.823690','48.672101',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (816,109355,2,108166,'150781000000','满洲里市','内蒙古,呼伦贝尔,满洲里','117.378530','49.597841',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (817,109393,2,108166,'150782000000','牙克石市','内蒙古,呼伦贝尔,牙克石','120.711770','49.285568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (818,109490,2,108166,'150783000000','扎兰屯市','内蒙古,呼伦贝尔,扎兰屯','122.737467','48.013733',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (819,109738,2,108166,'150784000000','额尔古纳市','内蒙古,呼伦贝尔,额尔古纳','120.180506','50.243102',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (820,109813,2,108166,'150785000000','根河市','内蒙古,呼伦贝尔,根河','121.520388','50.780345',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (821,109848,2,109847,'150801000000','市辖区','内蒙古,巴彦淖尔','107.387657','40.743213',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (822,109849,2,109847,'150802000000','临河区','内蒙古,巴彦淖尔,临河','107.363919','40.751187',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (823,110095,2,109847,'150821000000','五原县','内蒙古,巴彦淖尔,五原','108.267562','41.088422',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (824,110255,2,109847,'150822000000','磴口县','内蒙古,巴彦淖尔,磴口','107.008248','40.330524',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (825,110372,2,109847,'150823000000','乌拉特前旗','内蒙古,巴彦淖尔,乌拉特前旗','108.652119','40.737030',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (826,110557,2,109847,'150824000000','乌拉特中旗','内蒙古,巴彦淖尔,乌拉特中旗','108.513645','41.587732',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (827,110676,2,109847,'150825000000','乌拉特后旗','内蒙古,巴彦淖尔,乌拉特后旗','107.074621','41.084283',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (828,110743,2,109847,'150826000000','杭锦后旗','内蒙古,巴彦淖尔,杭锦后旗','107.150909','40.885896',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (829,110890,2,110889,'150901000000','市辖区','内蒙古,乌兰察布','113.132585','40.994785',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (830,110891,2,110889,'150902000000','集宁区','内蒙古,乌兰察布,集宁','113.123779','40.990689',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (831,110998,2,110889,'150921000000','卓资县','内蒙古,乌兰察布,卓资','112.577528','40.894692',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (832,111127,2,110889,'150922000000','化德县','内蒙古,乌兰察布,化德','114.010438','41.904560',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (833,111237,2,110889,'150923000000','商都县','内蒙古,乌兰察布,商都','113.577816','41.562113',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (834,111481,2,110889,'150924000000','兴和县','内蒙古,乌兰察布,兴和','113.834173','40.872301',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (835,111666,2,110889,'150925000000','凉城县','内蒙古,乌兰察布,凉城','112.503971','40.531555',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (836,111824,2,110889,'150926000000','察哈尔右翼前旗','内蒙古,乌兰察布,察哈尔右翼前旗','113.214733','40.785631',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (837,111969,2,110889,'150927000000','察哈尔右翼中旗','内蒙古,乌兰察布,察哈尔右翼中旗','112.635577','41.277462',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (838,112164,2,110889,'150928000000','察哈尔右翼后旗','内蒙古,乌兰察布,察哈尔右翼后旗','113.191035','41.436069',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (839,112277,2,110889,'150929000000','四子王旗','内蒙古,乌兰察布,四子王旗','111.706618','41.533462',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (840,112427,2,110889,'150981000000','丰镇市','内蒙古,乌兰察布,丰镇','113.109892','40.436983',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (841,112553,2,112552,'152201000000','乌兰浩特市','内蒙古,兴安,乌兰浩特','122.093123','46.072732',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (842,112694,2,112552,'152202000000','阿尔山市','内蒙古,兴安,阿尔山','119.943575','47.177440',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (843,112734,2,112552,'152221000000','科尔沁右翼前旗','内蒙古,兴安,科尔沁右翼前旗','121.952550','46.079810',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (844,113051,2,112552,'152222000000','科尔沁右翼中旗','内蒙古,兴安,科尔沁右翼中旗','121.476530','45.060837',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (845,113294,2,112552,'152223000000','扎赉特旗','内蒙古,兴安,扎赉特旗','122.899656','46.723237',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (846,113554,2,112552,'152224000000','突泉县','内蒙古,兴安,突泉','121.593799','45.381930',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (847,113778,2,113777,'152501000000','二连浩特市','内蒙古,锡林郭勒,二连浩特','111.977943','43.653170',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (848,113796,2,113777,'152502000000','锡林浩特市','内蒙古,锡林郭勒,锡林浩特','116.086032','43.933411',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (849,113912,2,113777,'152522000000','阿巴嘎旗','内蒙古,锡林郭勒,阿巴嘎旗','114.950248','44.022995',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (850,113999,2,113777,'152523000000','苏尼特左旗','内蒙古,锡林郭勒,苏尼特左旗','113.667248','43.859880',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (851,114065,2,113777,'152524000000','苏尼特右旗','内蒙古,锡林郭勒,苏尼特右旗','112.641783','42.742892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (852,114152,2,113777,'152525000000','东乌珠穆沁旗','内蒙古,锡林郭勒,东乌珠穆沁旗','116.974494','45.498221',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (853,114239,2,113777,'152526000000','西乌珠穆沁旗','内蒙古,锡林郭勒,西乌珠穆沁旗','117.608911','44.587882',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (854,114358,2,113777,'152527000000','太仆寺旗','内蒙古,锡林郭勒,太仆寺旗','115.282986','41.877136',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (855,114557,2,113777,'152528000000','镶黄旗','内蒙古,锡林郭勒,镶黄旗','113.847287','42.232371',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (856,114628,2,113777,'152529000000','正镶白旗','内蒙古,锡林郭勒,正镶白旗','115.029849','42.287471',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (857,114722,2,113777,'152530000000','正蓝旗','内蒙古,锡林郭勒,正蓝旗','115.992470','42.241638',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (858,114859,2,113777,'152531000000','多伦县','内蒙古,锡林郭勒,多伦','116.485556','42.203591',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (859,114941,2,114940,'152921000000','阿拉善左旗','内蒙古,阿拉善,阿拉善左旗','105.666293','38.833411',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (860,115132,2,114940,'152922000000','阿拉善右旗','内蒙古,阿拉善,阿拉善右旗','101.666917','39.216186',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (861,115189,2,114940,'152923000000','额济纳旗','内蒙古,阿拉善,额济纳旗','101.055590','41.954347',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (862,115226,2,115225,'210101000000','市辖区','辽宁,沈阳','123.431474','41.805698',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (863,115227,2,115225,'210102000000','和平区','辽宁,沈阳,和平','123.420382','41.789809',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (864,115347,2,115225,'210103000000','沈河区','辽宁,沈阳,沈河','123.458897','41.795655',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (865,115474,2,115225,'210104000000','大东区','辽宁,沈阳,大东','123.469949','41.805137',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (866,115612,2,115225,'210105000000','皇姑区','辽宁,沈阳,皇姑','123.441970','41.824796',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (867,115752,2,115225,'210106000000','铁西区','辽宁,沈阳,铁西','123.376301','41.802914',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (868,115964,2,115225,'210111000000','苏家屯区','辽宁,沈阳,苏家屯','123.344031','41.664757',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (869,116159,2,115225,'210112000000','浑南区','辽宁,沈阳,浑南','123.449715','41.714914',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (870,116399,2,115225,'210113000000','沈北新区','辽宁,沈阳,沈北','123.431474','41.805698',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (871,116614,2,115225,'210114000000','于洪区','辽宁,沈阳,于洪','123.308136','41.793743',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (872,116820,2,115225,'210115000000','辽中区','辽宁,沈阳,辽中','122.765409','41.516827',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (873,117075,2,115225,'210123000000','康平县','辽宁,沈阳,康平','123.355701','42.741005',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (874,117268,2,115225,'210124000000','法库县','辽宁,沈阳,法库','123.440495','42.500730',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (875,117530,2,115225,'210181000000','新民市','辽宁,沈阳,新民','122.836726','41.985193',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (876,117933,2,117932,'210201000000','市辖区','辽宁,大连','121.614682','38.914003',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (877,117934,2,117932,'210202000000','中山区','辽宁,大连,中山','121.644927','38.918574',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (878,117997,2,117932,'210203000000','西岗区','辽宁,大连,西岗','121.612325','38.914687',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (879,118050,2,117932,'210204000000','沙河口区','辽宁,大连,沙河口','121.594200','38.904808',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (880,118150,2,117932,'210211000000','甘井子区','辽宁,大连,甘井子','121.525461','38.953351',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (881,118405,2,117932,'210212000000','旅顺口区','辽宁,大连,旅顺口','121.261953','38.851705',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (882,118523,2,117932,'210213000000','金州区','辽宁,大连,金州','121.782769','39.050460',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (883,118884,2,117932,'210214000000','普兰店区','辽宁,大连,普兰店','121.970512','39.401551',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (884,119090,2,117932,'210224000000','长海县','辽宁,大连,长海','122.588494','39.272728',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (885,119126,2,117932,'210281000000','瓦房店市','辽宁,大连,瓦房店','121.979603','39.627114',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (886,119483,2,117932,'210283000000','庄河市','辽宁,大连,庄河','122.967328','39.680811',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (887,119790,2,119789,'210301000000','市辖区','辽宁,鞍山','122.994329','41.108647',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (888,119791,2,119789,'210302000000','铁东区','辽宁,鞍山,铁东','122.991052','41.089933',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (889,119915,2,119789,'210303000000','铁西区','辽宁,鞍山,铁西','122.969630','41.119885',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (890,120021,2,119789,'210304000000','立山区','辽宁,鞍山,立山','123.029091','41.150401',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (891,120150,2,119789,'210311000000','千山区','辽宁,鞍山,千山','122.949298','41.068909',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (892,120221,2,119789,'210321000000','台安县','辽宁,鞍山,台安','122.436196','41.412768',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (893,120401,2,119789,'210323000000','岫岩满族自治县','辽宁,鞍山,岫岩','123.280935','40.290880',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (894,120634,2,119789,'210381000000','海城市','辽宁,鞍山,海城','122.685217','40.882377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (895,121082,2,121081,'210401000000','市辖区','辽宁,抚顺','123.957208','41.880872',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (896,121083,2,121081,'210402000000','新抚区','辽宁,抚顺,新抚','123.912861','41.862080',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (897,121181,2,121081,'210403000000','东洲区','辽宁,抚顺,东洲','124.038685','41.853192',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (898,121326,2,121081,'210404000000','望花区','辽宁,抚顺,望花','123.784206','41.853646',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (899,121484,2,121081,'210411000000','顺城区','辽宁,抚顺,顺城','123.945040','41.883375',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (900,121604,2,121081,'210421000000','抚顺县','辽宁,抚顺,抚顺','124.097979','41.922644',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (901,121710,2,121081,'210422000000','新宾满族自治县','辽宁,抚顺,新宾','125.039978','41.734256',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (902,121920,2,121081,'210423000000','清原满族自治县','辽宁,抚顺,清原','124.924083','42.100539',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (903,122143,2,122142,'210501000000','市辖区','辽宁,本溪','123.766485','41.294175',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (904,122144,2,122142,'210502000000','平山区','辽宁,本溪,平山','123.768926','41.299702',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (905,122216,2,122142,'210503000000','溪湖区','辽宁,本溪,溪湖','123.767647','41.329219',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (906,122310,2,122142,'210504000000','明山区','辽宁,本溪,明山','123.817212','41.308710',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (907,122400,2,122142,'210505000000','南芬区','辽宁,本溪,南芬','123.744802','41.100445',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (908,122444,2,122142,'210521000000','本溪满族自治县','辽宁,本溪,本溪','124.120436','41.301892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (909,122591,2,122142,'210522000000','桓仁满族自治县','辽宁,本溪,桓仁','125.361007','41.267128',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (910,122731,2,122730,'210601000000','市辖区','辽宁,丹东','124.354706','40.000499',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (911,122732,2,122730,'210602000000','元宝区','辽宁,丹东,元宝','124.395757','40.136520',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (912,122785,2,122730,'210603000000','振兴区','辽宁,丹东,振兴','124.360264','40.105194',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (913,122886,2,122730,'210604000000','振安区','辽宁,丹东,振安','124.428162','40.158267',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (914,122958,2,122730,'210624000000','宽甸满族自治县','辽宁,丹东,宽甸','124.783660','40.731317',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (915,123177,2,122730,'210681000000','东港市','辽宁,丹东,东港','124.152705','39.863008',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (916,123438,2,122730,'210682000000','凤城市','辽宁,丹东,凤城','124.066919','40.452298',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (917,123699,2,123698,'210701000000','市辖区','辽宁,锦州','121.127003','41.095119',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (918,123700,2,123698,'210702000000','古塔区','辽宁,锦州,古塔','121.128279','41.117245',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (919,123778,2,123698,'210703000000','凌河区','辽宁,锦州,凌河','121.150877','41.114990',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (920,123869,2,123698,'210711000000','太和区','辽宁,锦州,太和','121.103892','41.109147',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (921,124044,2,123698,'210726000000','黑山县','辽宁,锦州,黑山','122.123443','41.666028',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (922,124398,2,123698,'210727000000','义县','辽宁,锦州,义县','121.239080','41.533087',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (923,124670,2,123698,'210781000000','凌海市','辽宁,锦州,凌海','121.357730','41.173400',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (924,124980,2,123698,'210782000000','北镇市','辽宁,锦州,北镇','121.795962','41.598764',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (925,125250,2,125249,'210801000000','市辖区','辽宁,营口','122.235417','40.667012',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (926,125251,2,125249,'210802000000','站前区','辽宁,营口,站前','122.258961','40.672670',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (927,125305,2,125249,'210803000000','西市区','辽宁,营口,西市','122.206414','40.666408',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (928,125353,2,125249,'210804000000','鲅鱼圈区','辽宁,营口,鲅鱼圈','122.107814','40.230636',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (929,125454,2,125249,'210811000000','老边区','辽宁,营口,老边','122.379967','40.680303',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (930,125520,2,125249,'210881000000','盖州市','辽宁,营口,盖州','122.348936','40.400611',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (931,125849,2,125249,'210882000000','大石桥市','辽宁,营口,大石桥','122.509131','40.644622',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (932,126157,2,126156,'210901000000','市辖区','辽宁,阜新','121.670323','42.021619',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (933,126158,2,126156,'210902000000','海州区','辽宁,阜新,海州','121.656255','42.013242',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (934,126236,2,126156,'210903000000','新邱区','辽宁,阜新,新邱','121.792535','42.087632',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (935,126264,2,126156,'210904000000','太平区','辽宁,阜新,太平','121.678512','42.010600',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (936,126314,2,126156,'210905000000','清河门区','辽宁,阜新,清河门','121.416105','41.783100',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (937,126349,2,126156,'210911000000','细河区','辽宁,阜新,细河','121.680540','42.025495',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (938,126417,2,126156,'210921000000','阜新蒙古族自治县','辽宁,阜新,阜新','121.757901','42.065175',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (939,126845,2,126156,'210922000000','彰武县','辽宁,阜新,彰武','122.538793','42.386544',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (940,127071,2,127070,'211001000000','市辖区','辽宁,辽阳','123.236944','41.267244',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (941,127072,2,127070,'211002000000','白塔区','辽宁,辽阳,白塔','123.174325','41.270347',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (942,127152,2,127070,'211003000000','文圣区','辽宁,辽阳,文圣','123.185386','41.262608',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (943,127218,2,127070,'211004000000','宏伟区','辽宁,辽阳,宏伟','123.196672','41.217649',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (944,127266,2,127070,'211005000000','弓长岭区','辽宁,辽阳,弓长岭','123.419804','41.151847',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (945,127305,2,127070,'211011000000','太子河区','辽宁,辽阳,太子河','123.181782','41.253277',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (946,127386,2,127070,'211021000000','辽阳县','辽宁,辽阳,辽阳','123.105695','41.205329',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (947,127612,2,127070,'211081000000','灯塔市','辽宁,辽阳,灯塔','123.339312','41.426372',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (948,127835,2,127834,'211101000000','市辖区','辽宁,盘锦','122.070714','41.119997',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (949,127836,2,127834,'211102000000','双台子区','辽宁,盘锦,双台子','122.060112','41.190606',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (950,127896,2,127834,'211103000000','兴隆台区','辽宁,盘锦,兴隆台','122.069897','41.158678',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (951,128037,2,127834,'211104000000','大洼区','辽宁,盘锦,大洼','122.082575','41.002279',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (952,128231,2,127834,'211122000000','盘山县','辽宁,盘锦,盘山','121.996499','41.242873',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (953,128422,2,128421,'211201000000','市辖区','辽宁,铁岭','123.726166','42.223769',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (954,128423,2,128421,'211202000000','银州区','辽宁,铁岭,银州','123.842305','42.286130',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (955,128530,2,128421,'211204000000','清河区','辽宁,铁岭,清河','123.726166','42.223769',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (956,128591,2,128421,'211221000000','铁岭县','辽宁,铁岭,铁岭','123.729004','42.223383',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (957,128839,2,128421,'211223000000','西丰县','辽宁,铁岭,西丰','124.727393','42.738030',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (958,129043,2,128421,'211224000000','昌图县','辽宁,铁岭,昌图','124.111100','42.785791',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (959,129592,2,128421,'211281000000','调兵山市','辽宁,铁岭,调兵山','123.567117','42.467521',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (960,129661,2,128421,'211282000000','开原市','辽宁,铁岭,开原','124.038268','42.546307',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (961,129978,2,129977,'211301000000','市辖区','辽宁,朝阳','120.389862','41.497767',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (962,129979,2,129977,'211302000000','双塔区','辽宁,朝阳,双塔','120.453744','41.565628',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (963,130102,2,129977,'211303000000','龙城区','辽宁,朝阳,龙城','120.413376','41.576749',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (964,130205,2,129977,'211321000000','朝阳县','辽宁,朝阳,朝阳','120.389862','41.497767',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (965,130534,2,129977,'211322000000','建平县','辽宁,朝阳,建平','119.643280','41.403128',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (966,130860,2,129977,'211324000000','喀喇沁左翼蒙古族自治县','辽宁,朝阳,喀喇沁左翼','120.389862','41.497767',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (967,131089,2,129977,'211381000000','北票市','辽宁,朝阳,北票','120.770730','41.800684',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (968,131425,2,129977,'211382000000','凌源市','辽宁,朝阳,凌源','119.401574','41.245445',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (969,131739,2,131738,'211401000000','市辖区','辽宁,葫芦岛','120.836932','40.711052',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (970,131740,2,131738,'211402000000','连山区','辽宁,葫芦岛,连山','120.869231','40.774461',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (971,131976,2,131738,'211403000000','龙港区','辽宁,葫芦岛,龙港','120.893786','40.735519',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (972,132073,2,131738,'211404000000','南票区','辽宁,葫芦岛,南票','120.749728','41.107108',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (973,132258,2,131738,'211421000000','绥中县','辽宁,葫芦岛,绥中','120.344229','40.325659',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (974,132590,2,131738,'211422000000','建昌县','辽宁,葫芦岛,建昌','119.837124','40.824368',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (975,132912,2,131738,'211481000000','兴城市','辽宁,葫芦岛,兴城','120.728310','40.614762',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (976,133210,2,133209,'220101000000','市辖区','吉林,长春','125.323544','43.817071',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (977,133211,2,133209,'220102000000','南关区','吉林,长春,南关','125.350173','43.863989',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (978,133289,2,133209,'220103000000','宽城区','吉林,长春,宽城','125.326578','43.943614',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (979,133453,2,133209,'220104000000','朝阳区','吉林,长春,朝阳','125.288319','43.833513',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (980,133543,2,133209,'220105000000','二道区','吉林,长春,二道','125.374217','43.865596',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (981,133631,2,133209,'220106000000','绿园区','吉林,长春,绿园','125.256136','43.880975',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (982,133719,2,133209,'220112000000','双阳区','吉林,长春,双阳','125.664662','43.525311',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (983,133881,2,133209,'220113000000','九台区','吉林,长春,九台','125.839574','44.151742',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (984,134236,2,133209,'220122000000','农安县','吉林,长春,农安','125.184742','44.432889',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (985,134628,2,133209,'220182000000','榆树市','吉林,长春,榆树','126.533146','44.840288',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (986,135061,2,133209,'220183000000','德惠市','吉林,长春,德惠','125.728620','44.521785',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (987,135393,2,135392,'220201000000','市辖区','吉林,吉林','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (988,135394,2,135392,'220202000000','昌邑区','吉林,吉林,昌邑','126.574710','43.881818',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (989,135568,2,135392,'220203000000','龙潭区','吉林,吉林,龙潭','126.562197','43.910803',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (990,135755,2,135392,'220204000000','船营区','吉林,吉林,船营','126.540966','43.833445',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (991,135885,2,135392,'220211000000','丰满区','吉林,吉林,丰满','126.562274','43.821601',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (992,135986,2,135392,'220221000000','永吉县','吉林,吉林,永吉','126.497741','43.672582',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (993,136136,2,135392,'220281000000','蛟河市','吉林,吉林,蛟河','127.344501','43.723713',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (994,136439,2,135392,'220282000000','桦甸市','吉林,吉林,桦甸','126.746310','42.972097',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (995,136629,2,135392,'220283000000','舒兰市','吉林,吉林,舒兰','126.965607','44.406106',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (996,136889,2,135392,'220284000000','磐石市','吉林,吉林,磐石','126.060427','42.946285',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (997,137207,2,137206,'220301000000','市辖区','吉林,四平','124.350398','43.166419',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (998,137208,2,137206,'220302000000','铁西区','吉林,四平,铁西','124.345722','43.146155',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (999,137275,2,137206,'220303000000','铁东区','吉林,四平,铁东','124.409622','43.162048',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1000,137386,2,137206,'220322000000','梨树县','吉林,四平,梨树','124.335390','43.307060',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1001,137756,2,137206,'220323000000','伊通满族自治县','吉林,四平,伊通','125.305394','43.345754',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1002,137973,2,137206,'220381000000','公主岭市','吉林,四平,公主岭','124.822830','43.504687',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1003,138477,2,137206,'220382000000','双辽市','吉林,四平,双辽','123.502724','43.518302',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1004,138722,2,138721,'220401000000','市辖区','吉林,辽源','125.143532','42.887918',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1005,138723,2,138721,'220402000000','龙山区','吉林,辽源,龙山','125.136452','42.901534',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1006,138780,2,138721,'220403000000','西安区','吉林,辽源,西安','125.149283','42.927265',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1007,138818,2,138721,'220421000000','东丰县','吉林,辽源,东丰','125.530991','42.676935',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1008,139072,2,138721,'220422000000','东辽县','吉林,辽源,东辽','124.991521','42.926331',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1009,139341,2,139340,'220501000000','市辖区','吉林,通化','125.939697','41.728401',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1010,139342,2,139340,'220502000000','东昌区','吉林,通化,东昌','125.955102','41.728498',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1011,139405,2,139340,'220503000000','二道江区','吉林,通化,二道江','126.042535','41.774053',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1012,139453,2,139340,'220521000000','通化县','吉林,通化,通化','125.759259','41.679808',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1013,139654,2,139340,'220523000000','辉南县','吉林,通化,辉南','126.046912','42.684993',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1014,139824,2,139340,'220524000000','柳河县','吉林,通化,柳河','125.744735','42.284606',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1015,140077,2,139340,'220581000000','梅河口市','吉林,通化,梅河口','125.683832','42.530341',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1016,140432,2,139340,'220582000000','集安市','吉林,通化,集安','126.194031','41.125307',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1017,140602,2,140601,'220601000000','市辖区','吉林,白山','126.423587','41.939994',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1018,140603,2,140601,'220602000000','浑江区','吉林,白山,浑江','126.416094','41.945409',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1019,140714,2,140601,'220605000000','江源区','吉林,白山,江源','126.591144','42.056773',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1020,140816,2,140601,'220621000000','抚松县','吉林,白山,抚松','127.449764','42.221208',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1021,141003,2,140601,'220622000000','靖宇县','吉林,白山,靖宇','126.813625','42.388760',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1022,141140,2,140601,'220623000000','长白朝鲜族自治县','吉林,白山,长白','128.200789','41.420018',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1023,141237,2,140601,'220681000000','临江市','吉林,白山,临江','126.918087','41.811979',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1024,141362,2,141361,'220701000000','市辖区','吉林,松原','124.825117','45.141789',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1025,141363,2,141361,'220702000000','宁江区','吉林,松原,宁江','124.817054','45.171792',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1026,141560,2,141361,'220721000000','前郭尔罗斯蒙古族自治县','吉林,松原,前郭尔罗斯','124.823242','45.118030',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1027,141870,2,141361,'220722000000','长岭县','吉林,松原,长岭','123.967484','44.275895',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1028,142157,2,141361,'220723000000','乾安县','吉林,松原,乾安','124.041139','45.003774',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1029,142353,2,141361,'220781000000','扶余市','吉林,松原,扶余','126.049774','44.988449',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1030,142787,2,142786,'220801000000','市辖区','吉林,白城','122.839024','45.619641',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1031,142788,2,142786,'220802000000','洮北区','吉林,白城,洮北','122.851029','45.621716',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1032,143021,2,142786,'220821000000','镇赉县','吉林,白城,镇赉','123.199890','45.847435',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1033,143209,2,142786,'220822000000','通榆县','吉林,白城,通榆','123.088239','44.812911',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1034,143428,2,142786,'220881000000','洮南市','吉林,白城,洮南','122.783779','45.339113',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1035,143702,2,142786,'220882000000','大安市','吉林,白城,大安','124.292626','45.506996',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1036,143991,2,143990,'222401000000','延吉市','吉林,延边,延吉','129.508946','42.891255',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1037,144147,2,143990,'222402000000','图们市','吉林,延边,图们','129.843710','42.968044',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1038,144226,2,143990,'222403000000','敦化市','吉林,延边,敦化','128.232013','43.372413',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1039,144665,2,143990,'222404000000','珲春市','吉林,延边,珲春','130.366036','42.862821',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1040,144844,2,143990,'222405000000','龙井市','吉林,延边,龙井','129.427066','42.766311',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1041,144953,2,143990,'222406000000','和龙市','吉林,延边,和龙','129.010106','42.546675',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1042,145096,2,143990,'222424000000','汪清县','吉林,延边,汪清','129.771607','43.312522',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1043,145421,2,143990,'222426000000','安图县','吉林,延边,安图','128.899807','43.111964',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1044,145667,2,145666,'230101000000','市辖区','黑龙江,哈尔滨','126.534967','45.803775',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1045,145668,2,145666,'230102000000','道里区','黑龙江,哈尔滨,道里','126.616957','45.755777',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1046,145864,2,145666,'230103000000','南岗区','黑龙江,哈尔滨,南岗','126.668788','45.759970',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1047,146071,2,145666,'230104000000','道外区','黑龙江,哈尔滨,道外','126.649451','45.792113',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1048,146266,2,145666,'230108000000','平房区','黑龙江,哈尔滨,平房','126.534967','45.803775',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1049,146313,2,145666,'230109000000','松北区','黑龙江,哈尔滨,松北','126.510275','45.802756',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1050,146399,2,145666,'230110000000','香坊区','黑龙江,哈尔滨,香坊','126.662593','45.707716',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1051,146587,2,145666,'230111000000','呼兰区','黑龙江,哈尔滨,呼兰','126.587709','45.889427',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1052,146825,2,145666,'230112000000','阿城区','黑龙江,哈尔滨,阿城','126.958098','45.548670',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1053,147032,2,145666,'230113000000','双城区','黑龙江,哈尔滨,双城','126.312745','45.383263',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1054,147391,2,145666,'230123000000','依兰县','黑龙江,哈尔滨,依兰','129.567985','46.324534',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1055,147571,2,145666,'230124000000','方正县','黑龙江,哈尔滨,方正','128.829536','45.851695',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1056,147676,2,145666,'230125000000','宾县','黑龙江,哈尔滨,宾县','127.466634','45.745918',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1057,147884,2,145666,'230126000000','巴彦县','黑龙江,哈尔滨,巴彦','127.403182','46.085379',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1058,148060,2,145666,'230127000000','木兰县','黑龙江,哈尔滨,木兰','128.043466','45.950582',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1059,148178,2,145666,'230128000000','通河县','黑龙江,哈尔滨,通河','128.749352','45.972425',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1060,148351,2,145666,'230129000000','延寿县','黑龙江,哈尔滨,延寿','128.331644','45.451897',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1061,148502,2,145666,'230183000000','尚志市','黑龙江,哈尔滨,尚志','128.009895','45.209586',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1062,148755,2,145666,'230184000000','五常市','黑龙江,哈尔滨,五常','127.167619','44.931992',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1063,149080,2,149079,'230201000000','市辖区','黑龙江,齐齐哈尔','123.918186','47.354348',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1064,149081,2,149079,'230202000000','龙沙区','黑龙江,齐齐哈尔,龙沙','123.957531','47.317309',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1065,149129,2,149079,'230203000000','建华区','黑龙江,齐齐哈尔,建华','123.955464','47.354364',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1066,149173,2,149079,'230204000000','铁锋区','黑龙江,齐齐哈尔,铁锋','123.978293','47.340518',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1067,149231,2,149079,'230205000000','昂昂溪区','黑龙江,齐齐哈尔,昂昂溪','123.822401','47.155160',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1068,149266,2,149079,'230206000000','富拉尔基区','黑龙江,齐齐哈尔,富拉尔基','123.629190','47.208843',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1069,149317,2,149079,'230207000000','碾子山区','黑龙江,齐齐哈尔,碾子山','122.887775','47.516872',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1070,149338,2,149079,'230208000000','梅里斯达斡尔族区','黑龙江,齐齐哈尔,梅里斯','123.752910','47.309537',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1071,149404,2,149079,'230221000000','龙江县','黑龙江,齐齐哈尔,龙江','123.205323','47.338665',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1072,149588,2,149079,'230223000000','依安县','黑龙江,齐齐哈尔,依安','125.306279','47.893548',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1073,149767,2,149079,'230224000000','泰来县','黑龙江,齐齐哈尔,泰来','123.416631','46.393694',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1074,149896,2,149079,'230225000000','甘南县','黑龙江,齐齐哈尔,甘南','123.507429','47.922406',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1075,150046,2,149079,'230227000000','富裕县','黑龙江,齐齐哈尔,富裕','124.473793','47.774347',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1076,150168,2,149079,'230229000000','克山县','黑龙江,齐齐哈尔,克山','125.875705','48.037031',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1077,150337,2,149079,'230230000000','克东县','黑龙江,齐齐哈尔,克东','126.248721','48.042060',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1078,150471,2,149079,'230231000000','拜泉县','黑龙江,齐齐哈尔,拜泉','126.100213','47.595851',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1079,150680,2,149079,'230281000000','讷河市','黑龙江,齐齐哈尔,讷河','124.884244','48.484099',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1080,150916,2,150915,'230301000000','市辖区','黑龙江,鸡西','130.969333','45.295075',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1081,150917,2,150915,'230302000000','鸡冠区','黑龙江,鸡西,鸡冠','130.980894','45.304073',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1082,150984,2,150915,'230303000000','恒山区','黑龙江,鸡西,恒山','130.904963','45.210668',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1083,151039,2,150915,'230304000000','滴道区','黑龙江,鸡西,滴道','130.843613','45.348764',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1084,151084,2,150915,'230305000000','梨树区','黑龙江,鸡西,梨树','130.696990','45.092046',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1085,151113,2,150915,'230306000000','城子河区','黑龙江,鸡西,城子河','131.011304','45.336970',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1086,151154,2,150915,'230307000000','麻山区','黑龙江,鸡西,麻山','130.478187','45.212088',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1087,151177,2,150915,'230321000000','鸡东县','黑龙江,鸡西,鸡东','131.124080','45.260412',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1088,151347,2,150915,'230381000000','虎林市','黑龙江,鸡西,虎林','132.937210','45.762686',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1089,151577,2,150915,'230382000000','密山市','黑龙江,鸡西,密山','131.846636','45.529775',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1090,151831,2,151830,'230401000000','市辖区','黑龙江,鹤岗','130.297964','47.349916',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1091,151832,2,151830,'230402000000','向阳区','黑龙江,鹤岗,向阳','130.294309','47.342478',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1092,151855,2,151830,'230403000000','工农区','黑龙江,鹤岗,工农','130.274684','47.318781',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1093,151880,2,151830,'230404000000','南山区','黑龙江,鹤岗,南山','130.287057','47.315127',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1094,151912,2,151830,'230405000000','兴安区','黑龙江,鹤岗,兴安','130.239245','47.252850',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1095,151947,2,151830,'230406000000','东山区','黑龙江,鹤岗,东山','130.317062','47.338535',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1096,152026,2,151830,'230407000000','兴山区','黑龙江,鹤岗,兴山','130.303574','47.357666',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1097,152047,2,151830,'230421000000','萝北县','黑龙江,鹤岗,萝北','130.828626','47.577495',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1098,152237,2,151830,'230422000000','绥滨县','黑龙江,鹤岗,绥滨','131.852759','47.289116',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1099,152414,2,152413,'230501000000','市辖区','黑龙江,双鸭山','131.159133','46.646508',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1100,152415,2,152413,'230502000000','尖山区','黑龙江,双鸭山,尖山','131.158416','46.646350',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1101,152469,2,152413,'230503000000','岭东区','黑龙江,双鸭山,岭东','131.164724','46.592721',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1102,152508,2,152413,'230505000000','四方台区','黑龙江,双鸭山,四方台','131.334503','46.594316',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1103,152544,2,152413,'230506000000','宝山区','黑龙江,双鸭山,宝山','131.401589','46.577167',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1104,152590,2,152413,'230521000000','集贤县','黑龙江,双鸭山,集贤','131.140483','46.728377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1105,152810,2,152413,'230522000000','友谊县','黑龙江,双鸭山,友谊','131.808064','46.767299',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1106,152910,2,152413,'230523000000','宝清县','黑龙江,双鸭山,宝清','132.197243','46.326925',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1107,153142,2,152413,'230524000000','饶河县','黑龙江,双鸭山,饶河','134.013872','46.798164',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1108,153314,2,153313,'230601000000','市辖区','黑龙江,大庆','125.103784','46.589309',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1109,153315,2,153313,'230602000000','萨尔图区','黑龙江,大庆,萨尔图','125.114643','46.596356',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1110,153371,2,153313,'230603000000','龙凤区','黑龙江,大庆,龙凤','125.135326','46.562247',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1111,153423,2,153313,'230604000000','让胡路区','黑龙江,大庆,让胡路','124.870597','46.652358',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1112,153513,2,153313,'230605000000','红岗区','黑龙江,大庆,红岗','124.891039','46.398418',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1113,153561,2,153313,'230606000000','大同区','黑龙江,大庆,大同','124.812364','46.039828',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1114,153659,2,153313,'230621000000','肇州县','黑龙江,大庆,肇州','125.268643','45.699066',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1115,153791,2,153313,'230622000000','肇源县','黑龙江,大庆,肇源','125.078223','45.519320',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1116,153974,2,153313,'230623000000','林甸县','黑龙江,大庆,林甸','124.863603','47.171717',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1117,154082,2,153313,'230624000000','杜尔伯特蒙古族自治县','黑龙江,大庆,杜尔伯特','124.446705','46.866580',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1118,154202,2,154201,'230701000000','市辖区','黑龙江,伊春','128.841147','47.727536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1119,154203,2,154201,'230702000000','伊春区','黑龙江,伊春,伊春','128.907303','47.728171',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1120,154252,2,154201,'230703000000','南岔区','黑龙江,伊春,南岔','129.283467','47.138035',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1121,154342,2,154201,'230704000000','友好区','黑龙江,伊春,友好','128.840750','47.853778',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1122,154389,2,154201,'230705000000','西林区','黑龙江,伊春,西林','129.312851','47.480735',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1123,154404,2,154201,'230706000000','翠峦区','黑龙江,伊春,翠峦','128.669859','47.726728',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1124,154434,2,154201,'230707000000','新青区','黑龙江,伊春,新青','129.533600','48.290455',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1125,154473,2,154201,'230708000000','美溪区','黑龙江,伊春,美溪','129.129314','47.635090',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1126,154511,2,154201,'230709000000','金山屯区','黑龙江,伊春,金山屯','129.429117','47.413074',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1127,154547,2,154201,'230710000000','五营区','黑龙江,伊春,五营','129.245344','48.107910',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1128,154579,2,154201,'230711000000','乌马河区','黑龙江,伊春,乌马河','128.799478','47.727687',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1129,154616,2,154201,'230712000000','汤旺河区','黑龙江,伊春,汤旺河','129.571108','48.454651',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1130,154659,2,154201,'230713000000','带岭区','黑龙江,伊春,带岭','129.020793','47.028397',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1131,154695,2,154201,'230714000000','乌伊岭区','黑龙江,伊春,乌伊岭','129.437920','48.590323',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1132,154729,2,154201,'230715000000','红星区','黑龙江,伊春,红星','129.390983','48.239432',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1133,154759,2,154201,'230716000000','上甘岭区','黑龙江,伊春,上甘岭','129.024260','47.974708',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1134,154793,2,154201,'230722000000','嘉荫县','黑龙江,伊春,嘉荫','130.403564','48.889109',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1135,154899,2,154201,'230781000000','铁力市','黑龙江,伊春,铁力','128.032422','46.986640',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1136,155077,2,155076,'230801000000','市辖区','黑龙江,佳木斯','130.318917','46.799922',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1137,155078,2,155076,'230803000000','向阳区','黑龙江,佳木斯,向阳','130.365346','46.807790',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1138,155166,2,155076,'230804000000','前进区','黑龙江,佳木斯,前进','130.375063','46.814103',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1139,155191,2,155076,'230805000000','东风区','黑龙江,佳木斯,东风','130.403664','46.822572',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1140,155254,2,155076,'230811000000','郊区','黑龙江,佳木斯,郊区','130.327195','46.810086',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1141,155435,2,155076,'230822000000','桦南县','黑龙江,佳木斯,桦南','130.553343','46.239185',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1142,155702,2,155076,'230826000000','桦川县','黑龙江,佳木斯,桦川','130.719081','47.023001',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1143,155838,2,155076,'230828000000','汤原县','黑龙江,佳木斯,汤原','129.905072','46.730706',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1144,156034,2,155076,'230881000000','同江市','黑龙江,佳木斯,同江','132.510919','47.642707',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1145,156209,2,155076,'230882000000','富锦市','黑龙江,佳木斯,富锦','132.037686','47.250108',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1146,156599,2,155076,'230883000000','抚远市','黑龙江,佳木斯,抚远','134.307884','48.364687',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1147,156714,2,156713,'230901000000','市辖区','黑龙江,七台河','131.003138','45.771726',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1148,156715,2,156713,'230902000000','新兴区','黑龙江,七台河,新兴','130.932143','45.815930',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1149,156815,2,156713,'230903000000','桃山区','黑龙江,七台河,桃山','131.020275','45.765594',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1150,156865,2,156713,'230904000000','茄子河区','黑龙江,七台河,茄子河','131.068075','45.785215',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1151,156956,2,156713,'230921000000','勃利县','黑龙江,七台河,勃利','130.592093','45.755507',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1152,157131,2,157130,'231001000000','市辖区','黑龙江,牡丹江','129.633168','44.551653',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1153,157132,2,157130,'231002000000','东安区','黑龙江,牡丹江,东安','129.626642','44.581360',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1154,157170,2,157130,'231003000000','阳明区','黑龙江,牡丹江,阳明','129.635615','44.596104',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1155,157273,2,157130,'231004000000','爱民区','黑龙江,牡丹江,爱民','129.591657','44.596053',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1156,157321,2,157130,'231005000000','西安区','黑龙江,牡丹江,西安','129.616121','44.577625',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1157,157406,2,157130,'231025000000','林口县','黑龙江,牡丹江,林口','130.284033','45.278046',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1158,157646,2,157130,'231081000000','绥芬河市','黑龙江,牡丹江,绥芬河','131.152546','44.412309',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1159,157678,2,157130,'231083000000','海林市','黑龙江,牡丹江,海林','129.380482','44.594213',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1160,157911,2,157130,'231084000000','宁安市','黑龙江,牡丹江,宁安','129.482851','44.340720',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1161,158233,2,157130,'231085000000','穆棱市','黑龙江,牡丹江,穆棱','130.524437','44.918813',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1162,158470,2,157130,'231086000000','东宁市','黑龙江,牡丹江,东宁','131.122915','44.087585',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1163,158624,2,158623,'231101000000','市辖区','黑龙江,黑河','127.528560','50.245329',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1164,158625,2,158623,'231102000000','爱辉区','黑龙江,黑河,爱辉','127.500451','50.252106',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1165,158797,2,158623,'231121000000','嫩江县','黑龙江,黑河,嫩江','125.221192','49.185766',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1166,159105,2,158623,'231123000000','逊克县','黑龙江,黑河,逊克','128.478750','49.564252',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1167,159220,2,158623,'231124000000','孙吴县','黑龙江,黑河,孙吴','127.336304','49.425652',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1168,159359,2,158623,'231181000000','北安市','黑龙江,黑河,北安','126.491199','48.241374',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1169,159526,2,158623,'231182000000','五大连池市','黑龙江,黑河,五大连池','126.205516','48.517257',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1170,159770,2,159769,'231201000000','市辖区','黑龙江,绥化','126.968887','46.653845',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1171,159771,2,159769,'231202000000','北林区','黑龙江,绥化,北林','126.985593','46.637344',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1172,159985,2,159769,'231221000000','望奎县','黑龙江,绥化,望奎','126.486076','46.832719',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1173,160128,2,159769,'231222000000','兰西县','黑龙江,绥化,兰西','126.288113','46.252447',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1174,160271,2,159769,'231223000000','青冈县','黑龙江,绥化,青冈','126.113860','46.689671',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1175,160478,2,159769,'231224000000','庆安县','黑龙江,绥化,庆安','127.507825','46.880102',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1176,160610,2,159769,'231225000000','明水县','黑龙江,绥化,明水','125.906301','47.173426',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1177,160744,2,159769,'231226000000','绥棱县','黑龙江,绥化,绥棱','127.114832','47.236015',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1178,160910,2,159769,'231281000000','安达市','黑龙江,绥化,安达','125.352188','46.423508',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1179,161079,2,159769,'231282000000','肇东市','黑龙江,绥化,肇东','125.961814','46.051126',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1180,161331,2,159769,'231283000000','海伦市','黑龙江,绥化,海伦','126.973143','47.461971',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1181,161652,2,161651,'232721000000','呼玛县','黑龙江,大兴安岭,呼玛','126.665319','51.725637',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1182,161720,2,161651,'232722000000','塔河县','黑龙江,大兴安岭,塔河','124.709996','52.334457',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1183,161754,2,161651,'232723000000','漠河县','黑龙江,大兴安岭,漠河','122.538592','52.972272',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1184,161794,2,161793,'310101000000','黄浦区','上海,黄浦','121.484443','31.231763',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1185,161988,2,161793,'310104000000','徐汇区','上海,徐汇','121.436525','31.188523',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1186,162309,2,161793,'310105000000','长宁区','上海,长宁','121.424624','31.220367',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1187,162505,2,161793,'310106000000','静安区','上海,静安','121.459384','31.247105',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1188,162794,2,161793,'310107000000','普陀区','上海,普陀','121.395555','31.249840',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1189,163069,2,161793,'310109000000','虹口区','上海,虹口','121.505133','31.264600',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1190,163290,2,161793,'310110000000','杨浦区','上海,杨浦','121.526077','31.259541',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1191,163621,2,161793,'310112000000','闵行区','上海,闵行','121.381709','31.112813',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1192,164194,2,161793,'310113000000','宝山区','上海,宝山','121.489612','31.405457',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1193,164682,2,161793,'310114000000','嘉定区','上海,嘉定','121.265300','31.375602',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1194,165026,2,161793,'310115000000','浦东新区','上海,浦东','121.544379','31.221517',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1195,166350,2,161793,'310116000000','金山区','上海,金山','121.341970','30.741991',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1196,166585,2,161793,'310117000000','松江区','上海,松江','121.227747','31.032243',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1197,166927,2,161793,'310118000000','青浦区','上海,青浦','121.124178','31.150681',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1198,167228,2,161793,'310120000000','奉贤区','上海,奉贤','121.474042','30.917795',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1199,167533,2,161793,'310151000000','崇明区','上海,崇明','121.473701','31.230416',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1200,167906,2,167905,'320101000000','市辖区','江苏,南京','118.796877','32.060255',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1201,167907,2,167905,'320102000000','玄武区','江苏,南京,玄武','118.797861','32.048687',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1202,167974,2,167905,'320104000000','秦淮区','江苏,南京,秦淮','118.794744','32.039133',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1203,168104,2,167905,'320105000000','建邺区','江苏,南京,建邺','118.731694','32.003552',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1204,168174,2,167905,'320106000000','鼓楼区','江苏,南京,鼓楼','118.769790','32.066336',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1205,168310,2,167905,'320111000000','浦口区','江苏,南京,浦口','118.627895','32.059093',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1206,168451,2,167905,'320113000000','栖霞区','江苏,南京,栖霞','118.909246','32.096228',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1207,168604,2,167905,'320114000000','雨花台区','江苏,南京,雨花台','118.779073','31.991347',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1208,168704,2,167905,'320115000000','江宁区','江苏,南京,江宁','118.839685','31.953702',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1209,168925,2,167905,'320116000000','六合区','江苏,南京,六合','118.821401','32.322247',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1210,169096,2,167905,'320117000000','溧水区','江苏,南京,溧水','119.028296','31.651125',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1211,169214,2,167905,'320118000000','高淳区','江苏,南京,高淳','118.892085','31.328471',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1212,169376,2,169375,'320201000000','市辖区','江苏,无锡','120.311910','31.491169',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1213,169377,2,169375,'320205000000','锡山区','江苏,无锡,锡山','120.357858','31.589715',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1214,169507,2,169375,'320206000000','惠山区','江苏,无锡,惠山','120.298500','31.681012',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1215,169628,2,169375,'320211000000','滨湖区','江苏,无锡,滨湖','120.282692','31.527954',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1216,169751,2,169375,'320213000000','梁溪区','江苏,无锡,梁溪','120.296591','31.575719',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1217,169924,2,169375,'320214000000','新吴区','江苏,无锡,新吴','120.352778','31.550957',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1218,170064,2,169375,'320281000000','江阴市','江苏,无锡,江阴','120.284939','31.920658',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1219,170390,2,169375,'320282000000','宜兴市','江苏,无锡,宜兴','119.823308','31.340637',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1220,170725,2,170724,'320301000000','市辖区','江苏,徐州','117.284124','34.205768',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1221,170726,2,170724,'320302000000','鼓楼区','江苏,徐州,鼓楼','117.185591','34.288511',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1222,170800,2,170724,'320303000000','云龙区','江苏,徐州,云龙','117.251560','34.253167',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1223,170886,2,170724,'320305000000','贾汪区','江苏,徐州,贾汪','117.466687','34.435506',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1224,171049,2,170724,'320311000000','泉山区','江苏,徐州,泉山','117.193805','34.244258',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1225,171182,2,170724,'320312000000','铜山区','江苏,徐州,铜山','117.169421','34.180700',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1226,171537,2,170724,'320321000000','丰县','江苏,徐州,丰县','116.595391','34.693906',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1227,171966,2,170724,'320322000000','沛县','江苏,徐州,沛县','116.937532','34.721656',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1228,172381,2,170724,'320324000000','睢宁县','江苏,徐州,睢宁','117.941563','33.912598',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1229,172804,2,170724,'320381000000','新沂市','江苏,徐州,新沂','118.354537','34.369580',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1230,173105,2,170724,'320382000000','邳州市','江苏,徐州,邳州','118.012531','34.338888',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1231,173636,2,173635,'320401000000','市辖区','江苏,常州','119.973987','31.810689',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1232,173637,2,173635,'320402000000','天宁区','江苏,常州,天宁','119.974991','31.779619',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1233,173773,2,173635,'320404000000','钟楼区','江苏,常州,钟楼','119.902112','31.802192',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1234,173891,2,173635,'320411000000','新北区','江苏,常州,新北','119.972182','31.830641',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1235,174038,2,173635,'320412000000','武进区','江苏,常州,武进','119.942437','31.701188',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1236,174347,2,173635,'320413000000','金坛区','江苏,常州,金坛','119.597897','31.723247',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1237,174508,2,173635,'320481000000','溧阳市','江苏,常州,溧阳','119.484211','31.416911',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1238,174765,2,174764,'320501000000','市辖区','江苏,苏州','120.585315','31.298886',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1239,174766,2,174764,'320505000000','虎丘区','江苏,苏州,虎丘','120.566833','31.294845',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1240,174872,2,174764,'320506000000','吴中区','江苏,苏州,吴中','120.631898','31.264212',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1241,175088,2,174764,'320507000000','相城区','江苏,苏州,相城','120.642663','31.369088',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1242,175247,2,174764,'320508000000','姑苏区','江苏,苏州,姑苏','120.617296','31.336392',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1243,175444,2,174764,'320509000000','吴江区','江苏,苏州,吴江','120.645158','31.138677',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1244,175765,2,174764,'320581000000','常熟市','江苏,苏州,常熟','120.752481','31.654376',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1245,176120,2,174764,'320582000000','张家港市','江苏,苏州,张家港','120.553200','31.870405',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1246,176424,2,174764,'320583000000','昆山市','江苏,苏州,昆山','120.980737','31.385598',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1247,176763,2,174764,'320585000000','太仓市','江苏,苏州,太仓','121.130550','31.457735',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1248,176921,2,176920,'320601000000','市辖区','江苏,南通','120.894291','31.980171',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1249,176922,2,176920,'320602000000','崇川区','江苏,南通,崇川','120.857434','32.009875',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1250,177040,2,176920,'320611000000','港闸区','江苏,南通,港闸','120.818527','32.032442',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1251,177119,2,176920,'320612000000','通州区','江苏,南通,通州','121.075087','32.064161',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1252,177415,2,176920,'320621000000','海安县','江苏,南通,海安','120.467370','32.533549',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1253,177665,2,176920,'320623000000','如东县','江苏,南通,如东','121.185201','32.331766',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1254,177946,2,176920,'320681000000','启东市','江苏,南通,启东','121.657441','31.808026',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1255,178291,2,176920,'320682000000','如皋市','江苏,南通,如皋','120.574946','32.370557',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1256,178669,2,176920,'320684000000','海门市','江苏,南通,海门','121.181615','31.871173',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1257,179000,2,178999,'320701000000','市辖区','江苏,连云港','119.221611','34.596653',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1258,179001,2,178999,'320703000000','连云区','江苏,连云港,连云','119.338788','34.760249',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1259,179081,2,178999,'320706000000','海州区','江苏,连云港,海州','119.193710','34.606756',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1260,179296,2,178999,'320707000000','赣榆区','江苏,连云港,赣榆','119.173331','34.841349',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1261,179786,2,178999,'320722000000','东海县','江苏,连云港,东海','118.752842','34.542309',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1262,180136,2,178999,'320723000000','灌云县','江苏,连云港,灌云','119.239381','34.284381',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1263,180493,2,178999,'320724000000','灌南县','江苏,连云港,灌南','119.315651','34.087135',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1264,180744,2,180743,'320801000000','市辖区','江苏,淮安','119.015285','33.610353',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1265,180745,2,180743,'320803000000','淮安区','江苏,淮安,淮安','119.141099','33.502869',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1266,181117,2,180743,'320804000000','淮阴区','江苏,淮安,淮阴','119.034725','33.631893',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1267,181401,2,180743,'320812000000','清江浦区','江苏,淮安,清江浦','119.028099','33.624341',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1268,181547,2,180743,'320813000000','洪泽区','江苏,淮安,洪泽','119.015285','33.610353',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1269,181681,2,180743,'320826000000','涟水县','江苏,淮安,涟水','119.260335','33.780960',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1270,182092,2,180743,'320830000000','盱眙县','江苏,淮安,盱眙','118.544360','33.011971',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1271,182372,2,180743,'320831000000','金湖县','江苏,淮安,金湖','119.020585','33.025433',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1272,182539,2,182538,'320901000000','市辖区','江苏,盐城','120.163561','33.347382',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1273,182540,2,182538,'320902000000','亭湖区','江苏,盐城,亭湖','120.197358','33.390536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1274,182762,2,182538,'320903000000','盐都区','江苏,盐城,盐都','120.153898','33.338094',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1275,183048,2,182538,'320904000000','大丰区','江苏,盐城,大丰','120.500858','33.200331',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1276,183334,2,182538,'320921000000','响水县','江苏,盐城,响水','119.578364','34.199479',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1277,183510,2,182538,'320922000000','滨海县','江苏,盐城,滨海','119.820831','33.990334',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1278,183829,2,182538,'320923000000','阜宁县','江苏,盐城,阜宁','119.802527','33.759325',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1279,184188,2,182538,'320924000000','射阳县','江苏,盐城,射阳','120.258053','33.774806',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1280,184485,2,182538,'320925000000','建湖县','江苏,盐城,建湖','119.798581','33.464204',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1281,184748,2,182538,'320981000000','东台市','江苏,盐城,东台','120.320331','32.868440',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1282,185202,2,185201,'321001000000','市辖区','江苏,扬州','119.412966','32.394210',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1283,185203,2,185201,'321002000000','广陵区','江苏,扬州,广陵','119.431849','32.394720',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1284,185360,2,185201,'321003000000','邗江区','江苏,扬州,邗江','119.398015','32.377528',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1285,185555,2,185201,'321012000000','江都区','江苏,扬州,江都','119.569989','32.434672',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1286,185905,2,185201,'321023000000','宝应县','江苏,扬州,宝应','119.360729','33.240392',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1287,186203,2,185201,'321081000000','仪征市','江苏,扬州,仪征','119.184766','32.272258',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1288,186414,2,185201,'321084000000','高邮市','江苏,扬州,高邮','119.459161','32.781659',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1289,186658,2,186657,'321101000000','市辖区','江苏,镇江','119.425836','32.187849',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1290,186659,2,186657,'321102000000','京口区','江苏,镇江,京口','119.470160','32.198280',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1291,186734,2,186657,'321111000000','润州区','江苏,镇江,润州','119.411945','32.195333',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1292,186817,2,186657,'321112000000','丹徒区','江苏,镇江,丹徒','119.433854','32.131962',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1293,186919,2,186657,'321181000000','丹阳市','江苏,镇江,丹阳','119.606536','32.010117',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1294,187149,2,186657,'321182000000','扬中市','江苏,镇江,扬中','119.797635','32.234831',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1295,187235,2,186657,'321183000000','句容市','江苏,镇江,句容','119.168695','31.944999',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1296,187442,2,187441,'321201000000','市辖区','江苏,泰州','119.923116','32.455778',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1297,187443,2,187441,'321202000000','海陵区','江苏,泰州,海陵','119.919425','32.491016',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1298,187593,2,187441,'321203000000','高港区','江苏,泰州,高港','119.881717','32.318822',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1299,187693,2,187441,'321204000000','姜堰区','江苏,泰州,姜堰','120.127934','32.509155',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1300,188035,2,187441,'321281000000','兴化市','江苏,泰州,兴化','119.852541','32.910459',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1301,188752,2,187441,'321282000000','靖江市','江苏,泰州,靖江','120.277138','31.982751',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1302,189026,2,187441,'321283000000','泰兴市','江苏,泰州,泰兴','120.051744','32.171854',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1303,189403,2,189402,'321301000000','市辖区','江苏,宿迁','118.275198','33.963232',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1304,189404,2,189402,'321302000000','宿城区','江苏,宿迁,宿城','118.242534','33.963029',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1305,189637,2,189402,'321311000000','宿豫区','江苏,宿迁,宿豫','118.330782','33.946822',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1306,189850,2,189402,'321322000000','沭阳县','江苏,宿迁,沭阳','118.804784','34.111022',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1307,190377,2,189402,'321323000000','泗阳县','江苏,宿迁,泗阳','118.703038','33.723140',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1308,190642,2,189402,'321324000000','泗洪县','江苏,宿迁,泗洪','118.223591','33.476051',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1309,191021,2,191020,'330101000000','市辖区','浙江,杭州','120.155070','30.274084',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1310,191022,2,191020,'330102000000','上城区','浙江,杭州,上城','120.169329','30.242312',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1311,191083,2,191020,'330103000000','下城区','浙江,杭州,下城','120.180895','30.281714',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1312,191166,2,191020,'330104000000','江干区','浙江,杭州,江干','120.205001','30.257012',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1313,191360,2,191020,'330105000000','拱墅区','浙江,杭州,拱墅','120.141406','30.319037',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1314,191479,2,191020,'330106000000','西湖区','浙江,杭州,西湖','120.130203','30.259324',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1315,191693,2,191020,'330108000000','滨江区','浙江,杭州,滨江','120.211816','30.208560',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1316,191756,2,191020,'330109000000','萧山区','浙江,杭州,萧山','120.264253','30.183806',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1317,192388,2,191020,'330110000000','余杭区','浙江,杭州,余杭','120.299402','30.419045',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1318,192753,2,191020,'330111000000','富阳区','浙江,杭州,富阳','119.960076','30.048692',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1319,193085,2,191020,'330122000000','桐庐县','浙江,杭州,桐庐','119.691434','29.793535',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1320,193304,2,191020,'330127000000','淳安县','浙江,杭州,淳安','119.041864','29.608772',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1321,193766,2,191020,'330182000000','建德市','浙江,杭州,建德','119.281164','29.474871',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1322,194060,2,191020,'330185000000','临安市','浙江,杭州,临安','119.724733','30.233873',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1323,194396,2,194395,'330201000000','市辖区','浙江,宁波','121.550357','29.874556',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1324,194397,2,194395,'330203000000','海曙区','浙江,宁波,海曙','121.551066','29.859772',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1325,194484,2,194395,'330204000000','江东区','浙江,宁波,江东','121.570383','29.866819',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1326,194568,2,194395,'330205000000','江北区','浙江,宁波,江北','121.555227','29.886757',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1327,194747,2,194395,'330206000000','北仑区','浙江,宁波,北仑','121.844618','29.899044',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1328,195023,2,194395,'330211000000','镇海区','浙江,宁波,镇海','121.716540','29.948998',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1329,195132,2,194395,'330212000000','鄞州区','浙江,宁波,鄞州','121.546603','29.816511',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1330,195703,2,194395,'330225000000','象山县','浙江,宁波,象山','121.869339','29.476705',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1331,196257,2,194395,'330226000000','宁海县','浙江,宁波,宁海','121.429477','29.287939',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1332,196686,2,194395,'330281000000','余姚市','浙江,宁波,余姚','121.154634','30.037192',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1333,197031,2,194395,'330282000000','慈溪市','浙江,宁波,慈溪','121.266579','30.169665',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1334,197440,2,194395,'330283000000','奉化市','浙江,宁波,奉化','121.406995','29.655143',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1335,197851,2,197850,'330301000000','市辖区','浙江,温州','120.699366','27.994267',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1336,197852,2,197850,'330302000000','鹿城区','浙江,温州,鹿城','120.655135','28.015455',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1337,198091,2,197850,'330303000000','龙湾区','浙江,温州,龙湾','120.811213','27.932747',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1338,198210,2,197850,'330304000000','瓯海区','浙江,温州,瓯海','120.614910','27.966844',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1339,198508,2,197850,'330305000000','洞头区','浙江,温州,洞头','121.157249','27.836154',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1340,198619,2,197850,'330324000000','永嘉县','浙江,温州,永嘉','120.682144','28.150591',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1341,199581,2,197850,'330326000000','平阳县','浙江,温州,平阳','120.565793','27.661918',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1342,200239,2,197850,'330327000000','苍南县','浙江,温州,苍南','120.425766','27.518280',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1343,201140,2,197850,'330328000000','文成县','浙江,温州,文成','120.091498','27.786996',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1344,201556,2,197850,'330329000000','泰顺县','浙江,温州,泰顺','119.717649','27.556884',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1345,201882,2,197850,'330381000000','瑞安市','浙江,温州,瑞安','120.655148','27.778657',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1346,202864,2,197850,'330382000000','乐清市','浙江,温州,乐清','120.967147','28.116083',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1347,203853,2,203852,'330401000000','市辖区','浙江,嘉兴','120.755486','30.746129',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1348,203854,2,203852,'330402000000','南湖区','浙江,嘉兴,南湖','120.783025','30.747842',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1349,204008,2,203852,'330411000000','秀洲区','浙江,嘉兴,秀洲','120.709018','30.765168',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1350,204177,2,203852,'330421000000','嘉善县','浙江,嘉兴,嘉善','120.925850','30.830898',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1351,204341,2,203852,'330424000000','海盐县','浙江,嘉兴,海盐','120.946263','30.526436',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1352,204486,2,203852,'330481000000','海宁市','浙江,嘉兴,海宁','120.680757','30.510659',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1353,204723,2,203852,'330482000000','平湖市','浙江,嘉兴,平湖','121.015142','30.677233',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1354,204877,2,203852,'330483000000','桐乡市','浙江,嘉兴,桐乡','120.565099','30.630173',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1355,205102,2,205101,'330501000000','市辖区','浙江,湖州','120.086823','30.894348',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1356,205103,2,205101,'330502000000','吴兴区','浙江,湖州,吴兴','120.185838','30.857151',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1357,205449,2,205101,'330503000000','南浔区','浙江,湖州,南浔','120.418512','30.849690',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1358,205717,2,205101,'330521000000','德清县','浙江,湖州,德清','119.977401','30.542510',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1359,205910,2,205101,'330522000000','长兴县','浙江,湖州,长兴','119.910952','31.026666',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1360,206213,2,205101,'330523000000','安吉县','浙江,湖州,安吉','119.680353','30.638675',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1361,206439,2,206438,'330601000000','市辖区','浙江,绍兴','120.580232','30.029752',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1362,206440,2,206438,'330602000000','越城区','浙江,绍兴,越城','120.582633','29.988245',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1363,206875,2,206438,'330603000000','柯桥区','浙江,绍兴,柯桥','120.495065','30.081942',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1364,207247,2,206438,'330604000000','上虞区','浙江,绍兴,上虞','120.868122','30.033121',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1365,207715,2,206438,'330624000000','新昌县','浙江,绍兴,新昌','120.903866','29.499832',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1366,208171,2,206438,'330681000000','诸暨市','浙江,绍兴,诸暨','120.246863','29.708692',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1367,208733,2,206438,'330683000000','嵊州市','浙江,绍兴,嵊州','120.831025','29.561410',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1368,209251,2,209250,'330701000000','市辖区','浙江,金华','119.647444','29.079059',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1369,209252,2,209250,'330702000000','婺城区','浙江,金华,婺城','119.571633','29.086221',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1370,209949,2,209250,'330703000000','金东区','浙江,金华,金东','119.692862','29.099122',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1371,210474,2,209250,'330723000000','武义县','浙江,金华,武义','119.816318','28.892721',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1372,211047,2,209250,'330726000000','浦江县','浙江,金华,浦江','119.892222','29.452477',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1373,211492,2,209250,'330727000000','磐安县','浙江,金华,磐安','120.450178','29.054048',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1374,211883,2,209250,'330781000000','兰溪市','浙江,金华,兰溪','119.460526','29.208919',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1375,212256,2,209250,'330782000000','义乌市','浙江,金华,义乌','120.075058','29.306841',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1376,213076,2,209250,'330783000000','东阳市','浙江,金华,东阳','120.241566','29.289648',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1377,213485,2,209250,'330784000000','永康市','浙江,金华,永康','120.047651','28.888555',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1378,214261,2,214260,'330801000000','市辖区','浙江,衢州','118.859457','28.970079',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1379,214262,2,214260,'330802000000','柯城区','浙江,衢州,柯城','118.871333','28.968504',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1380,214536,2,214260,'330803000000','衢江区','浙江,衢州,衢江','118.959460','28.979780',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1381,214843,2,214260,'330822000000','常山县','浙江,衢州,常山','118.511287','28.901343',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1382,215051,2,214260,'330824000000','开化县','浙江,衢州,开化','118.415495','29.137337',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1383,215332,2,214260,'330825000000','龙游县','浙江,衢州,龙游','119.172304','29.028319',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1384,215624,2,214260,'330881000000','江山市','浙江,衢州,江山','118.626974','28.737223',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1385,215956,2,215955,'330901000000','市辖区','浙江,舟山','122.207215','29.985295',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1386,215957,2,215955,'330902000000','定海区','浙江,舟山,定海','122.106773','30.019858',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1387,216139,2,215955,'330903000000','普陀区','浙江,舟山,普陀','122.323867','29.971760',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1388,216290,2,215955,'330921000000','岱山县','浙江,舟山,岱山','122.226237','30.264139',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1389,216394,2,215955,'330922000000','嵊泗县','浙江,舟山,嵊泗','122.451382','30.725686',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1390,216450,2,216449,'331001000000','市辖区','浙江,台州','121.420757','28.656386',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1391,216451,2,216449,'331002000000','椒江区','浙江,台州,椒江','121.442676','28.673726',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1392,216788,2,216449,'331003000000','黄岩区','浙江,台州,黄岩','121.261893','28.650117',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1393,217324,2,216449,'331004000000','路桥区','浙江,台州,路桥','121.365123','28.582655',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1394,217666,2,216449,'331021000000','玉环县','浙江,台州,玉环','121.231805','28.135930',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1395,217998,2,216449,'331022000000','三门县','浙江,台州,三门','121.395777','29.104873',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1396,218534,2,216449,'331023000000','天台县','浙江,台州,天台','121.006725','29.144079',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1397,219162,2,216449,'331024000000','仙居县','浙江,台州,仙居','120.735081','28.849213',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1398,219609,2,216449,'331081000000','温岭市','浙江,台州,温岭','121.385604','28.372506',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1399,220555,2,216449,'331082000000','临海市','浙江,台州,临海','121.145047','28.858457',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1400,221611,2,221610,'331101000000','市辖区','浙江,丽水','119.922796','28.467630',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1401,221612,2,221610,'331102000000','莲都区','浙江,丽水,莲都','119.912612','28.445836',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1402,221903,2,221610,'331121000000','青田县','浙江,丽水,青田','120.289597','28.139059',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1403,222380,2,221610,'331122000000','缙云县','浙江,丽水,缙云','120.091573','28.659279',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1404,222658,2,221610,'331123000000','遂昌县','浙江,丽水,遂昌','119.276104','28.592119',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1405,222890,2,221610,'331124000000','松阳县','浙江,丽水,松阳','119.482015','28.449171',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1406,223324,2,221610,'331125000000','云和县','浙江,丽水,云和','119.573397','28.115790',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1407,223512,2,221610,'331126000000','庆元县','浙江,丽水,庆元','119.062590','27.619220',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1408,223885,2,221610,'331127000000','景宁畲族自治县','浙江,丽水,景宁','119.635697','27.973312',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1409,224172,2,221610,'331181000000','龙泉市','浙江,丽水,龙泉','119.141461','28.074623',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1410,224651,2,224650,'340101000000','市辖区','安徽,合肥','117.227239','31.820586',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1411,224652,2,224650,'340102000000','瑶海区','安徽,合肥,瑶海','117.309229','31.858048',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1412,224755,2,224650,'340103000000','庐阳区','安徽,合肥,庐阳','117.264595','31.878641',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1413,224838,2,224650,'340104000000','蜀山区','安徽,合肥,蜀山','117.260536','31.851158',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1414,224946,2,224650,'340111000000','包河区','安徽,合肥,包河','117.309658','31.793093',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1415,225062,2,224650,'340121000000','长丰县','安徽,合肥,长丰','117.167564','32.478018',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1416,225352,2,224650,'340122000000','肥东县','安徽,合肥,肥东','117.469383','31.887940',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1417,225705,2,224650,'340123000000','肥西县','安徽,合肥,肥西','117.157981','31.706810',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1418,225998,2,224650,'340124000000','庐江县','安徽,合肥,庐江','117.287800','31.255550',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1419,226249,2,224650,'340181000000','巢湖市','安徽,合肥,巢湖','117.861800','31.598628',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1420,226470,2,226469,'340201000000','市辖区','安徽,芜湖','118.432941','31.352859',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1421,226471,2,226469,'340202000000','镜湖区','安徽,芜湖,镜湖','118.385146','31.340404',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1422,226550,2,226469,'340203000000','弋江区','安徽,芜湖,弋江','118.372655','31.311757',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1423,226612,2,226469,'340207000000','鸠江区','安徽,芜湖,鸠江','118.391734','31.369373',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1424,226735,2,226469,'340208000000','三山区','安徽,芜湖,三山','118.268101','31.219568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1425,226786,2,226469,'340221000000','芜湖县','安徽,芜湖,芜湖','118.576124','31.134809',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1426,226891,2,226469,'340222000000','繁昌县','安徽,芜湖,繁昌','118.201349','31.080896',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1427,226995,2,226469,'340223000000','南陵县','安徽,芜湖,南陵','118.334360','30.914923',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1428,227183,2,226469,'340225000000','无为县','安徽,芜湖,无为','117.902366','31.303168',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1429,227483,2,227482,'340301000000','市辖区','安徽,蚌埠','117.389719','32.916287',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1430,227484,2,227482,'340302000000','龙子湖区','安徽,蚌埠,龙子湖','117.393790','32.943014',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1431,227551,2,227482,'340303000000','蚌山区','安徽,蚌埠,蚌山','117.367614','32.944198',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1432,227598,2,227482,'340304000000','禹会区','安徽,蚌埠,禹会','117.342451','32.929711',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1433,227677,2,227482,'340311000000','淮上区','安徽,蚌埠,淮上','117.359331','32.965435',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1434,227769,2,227482,'340321000000','怀远县','安徽,蚌埠,怀远','117.205234','32.970031',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1435,228155,2,227482,'340322000000','五河县','安徽,蚌埠,五河','117.879486','33.127823',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1436,228388,2,227482,'340323000000','固镇县','安徽,蚌埠,固镇','117.316955','33.316899',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1437,228631,2,228630,'340401000000','市辖区','安徽,淮南','116.999932','32.625478',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1438,228632,2,228630,'340402000000','大通区','安徽,淮南,大通','117.053273','32.631533',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1439,228710,2,228630,'340403000000','田家庵区','安徽,淮南,田家庵','117.017409','32.647155',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1440,228853,2,228630,'340404000000','谢家集区','安徽,淮南,谢家集','116.859048','32.599901',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1441,228960,2,228630,'340405000000','八公山区','安徽,淮南,八公山','116.833490','32.631379',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1442,229029,2,228630,'340406000000','潘集区','安徽,淮南,潘集','116.834716','32.772080',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1443,229221,2,228630,'340421000000','凤台县','安徽,淮南,凤台','116.711051','32.709445',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1444,229527,2,228630,'340422000000','寿县','安徽,淮南,寿县','116.787141','32.573306',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1445,229845,2,229844,'340501000000','市辖区','安徽,马鞍山','118.506759','31.670452',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1446,229846,2,229844,'340503000000','花山区','安徽,马鞍山,花山','118.492562','31.719710',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1447,229922,2,229844,'340504000000','雨山区','安徽,马鞍山,雨山','118.498560','31.682208',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1448,229992,2,229844,'340506000000','博望区','安徽,马鞍山,博望','118.844538','31.558471',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1449,230041,2,229844,'340521000000','当涂县','安徽,马鞍山,当涂','118.497972','31.571213',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1450,230213,2,229844,'340522000000','含山县','安徽,马鞍山,含山','118.101421','31.735599',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1451,230345,2,229844,'340523000000','和县','安徽,马鞍山,和县','118.351405','31.741794',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1452,230477,2,230476,'340601000000','市辖区','安徽,淮北','116.798265','33.955844',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1453,230478,2,230476,'340602000000','杜集区','安徽,淮北,杜集','116.828134','33.991451',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1454,230539,2,230476,'340603000000','相山区','安徽,淮北,相山','116.794345','33.959893',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1455,230648,2,230476,'340604000000','烈山区','安徽,淮北,烈山','116.813042','33.895139',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1456,230720,2,230476,'340621000000','濉溪县','安徽,淮北,濉溪','116.766299','33.915477',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1457,230982,2,230981,'340701000000','市辖区','安徽,铜陵','117.812079','30.945429',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1458,230983,2,230981,'340705000000','铜官区','安徽,铜陵,铜官','117.816174','30.927608',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1459,231043,2,230981,'340706000000','义安区','安徽,铜陵,义安','117.791544','30.952823',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1460,231171,2,230981,'340711000000','郊区','安徽,铜陵,郊区','117.807070','30.908927',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1461,231216,2,230981,'340722000000','枞阳县','安徽,铜陵,枞阳','117.220200','30.700733',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1462,231500,2,231499,'340801000000','市辖区','安徽,安庆','117.063754','30.543494',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1463,231501,2,231499,'340802000000','迎江区','安徽,安庆,迎江','117.091150','30.511548',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1464,231558,2,231499,'340803000000','大观区','安徽,安庆,大观','117.021670','30.553957',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1465,231646,2,231499,'340811000000','宜秀区','安徽,安庆,宜秀','117.070003','30.541323',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1466,231710,2,231499,'340822000000','怀宁县','安徽,安庆,怀宁','116.829475','30.733825',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1467,231974,2,231499,'340824000000','潜山县','安徽,安庆,潜山','116.581270','30.631129',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1468,232180,2,231499,'340825000000','太湖县','安徽,安庆,太湖','116.308795','30.454220',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1469,232386,2,231499,'340826000000','宿松县','安徽,安庆,宿松','116.129105','30.153746',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1470,232631,2,231499,'340827000000','望江县','安徽,安庆,望江','116.694183','30.124428',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1471,232781,2,231499,'340828000000','岳西县','安徽,安庆,岳西','116.359921','30.849442',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1472,232996,2,231499,'340881000000','桐城市','安徽,安庆,桐城','116.974120','31.035800',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1473,233237,2,233236,'341001000000','市辖区','安徽,黄山','118.337481','29.714655',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1474,233238,2,233236,'341002000000','屯溪区','安徽,黄山,屯溪','118.315329','29.696109',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1475,233321,2,233236,'341003000000','黄山区','安徽,黄山,黄山','118.141568','30.272942',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1476,233423,2,233236,'341004000000','徽州区','安徽,黄山,徽州','118.336751','29.827279',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1477,233487,2,233236,'341021000000','歙县','安徽,黄山,歙县','118.415356','29.861308',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1478,233714,2,233236,'341022000000','休宁县','安徽,黄山,休宁','118.199179','29.789095',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1479,233894,2,233236,'341023000000','黟县','安徽,黄山,黟县','117.938373','29.924805',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1480,233973,2,233236,'341024000000','祁门县','安徽,黄山,祁门','117.717396','29.854055',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1481,234110,2,234109,'341101000000','市辖区','安徽,滁州','118.317106','32.301556',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1482,234111,2,234109,'341102000000','琅琊区','安徽,滁州,琅琊','118.305843','32.294530',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1483,234174,2,234109,'341103000000','南谯区','安徽,滁州,南谯','118.296955','32.329842',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1484,234274,2,234109,'341122000000','来安县','安徽,滁州,来安','118.435792','32.452172',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1485,234434,2,234109,'341124000000','全椒县','安徽,滁州,全椒','118.273090','32.085407',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1486,234560,2,234109,'341125000000','定远县','安徽,滁州,定远','117.698563','32.530982',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1487,234847,2,234109,'341126000000','凤阳县','安徽,滁州,凤阳','117.531623','32.874735',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1488,235112,2,234109,'341181000000','天长市','安徽,滁州,天长','119.004817','32.667571',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1489,235305,2,234109,'341182000000','明光市','安徽,滁州,明光','118.018276','32.781995',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1490,235484,2,235483,'341201000000','市辖区','安徽,阜阳','115.814204','32.890124',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1491,235485,2,235483,'341202000000','颍州区','安徽,阜阳,颍州','115.806942','32.883468',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1492,235646,2,235483,'341203000000','颍东区','安徽,阜阳,颍东','115.856687','32.912478',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1493,235778,2,235483,'341204000000','颍泉区','安徽,阜阳,颍泉','115.808327','32.924918',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1494,235909,2,235483,'341221000000','临泉县','安徽,阜阳,临泉','115.261473','33.040261',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1495,236338,2,235483,'341222000000','太和县','安徽,阜阳,太和','115.621934','33.160326',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1496,236685,2,235483,'341225000000','阜南县','安徽,阜阳,阜南','115.595644','32.658297',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1497,237046,2,235483,'341226000000','颍上县','安徽,阜阳,颍上','116.256789','32.653255',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1498,237428,2,235483,'341282000000','界首市','安徽,阜阳,界首','115.374564','33.257013',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1499,237608,2,237607,'341301000000','市辖区','安徽,宿州','116.964356','33.646373',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1500,237609,2,237607,'341302000000','埇桥区','安徽,宿州,埇桥','116.977463','33.640061',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1501,238022,2,237607,'341321000000','砀山县','安徽,宿州,砀山','116.367095','34.442561',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1502,238207,2,237607,'341322000000','萧县','安徽,宿州,萧县','116.947290','34.188728',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1503,238533,2,237607,'341323000000','灵璧县','安徽,宿州,灵璧','117.552462','33.552998',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1504,238872,2,237607,'341324000000','泗县','安徽,宿州,泗县','117.910629','33.482982',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1505,239085,2,239084,'341501000000','市辖区','安徽,六安','116.521854','31.733699',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1506,239086,2,239084,'341502000000','金安区','安徽,六安,金安','116.539679','31.749265',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1507,239450,2,239084,'341503000000','裕安区','安徽,六安,裕安','116.479920','31.737813',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1508,239780,2,239084,'341504000000','叶集区','安徽,六安,叶集','116.521854','31.733699',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1509,239834,2,239084,'341522000000','霍邱县','安徽,六安,霍邱','116.277912','32.353038',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1510,240310,2,239084,'341523000000','舒城县','安徽,六安,舒城','116.948623','31.462027',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1511,240759,2,239084,'341524000000','金寨县','安徽,六安,金寨','115.934366','31.727170',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1512,241016,2,239084,'341525000000','霍山县','安徽,六安,霍山','116.332951','31.392786',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1513,241181,2,241180,'341601000000','市辖区','安徽,亳州','115.778676','33.844582',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1514,241182,2,241180,'341602000000','谯城区','安徽,亳州,谯城','115.779025','33.876235',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1515,241517,2,241180,'341621000000','涡阳县','安徽,亳州,涡阳','116.215665','33.492921',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1516,241927,2,241180,'341622000000','蒙城县','安徽,亳州,蒙城','116.564248','33.265831',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1517,242245,2,241180,'341623000000','利辛县','安徽,亳州,利辛','116.208635','33.144724',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1518,242635,2,242634,'341701000000','市辖区','安徽,池州','117.491568','30.664800',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1519,242636,2,242634,'341702000000','贵池区','安徽,池州,贵池','117.567379','30.687181',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1520,242888,2,242634,'341721000000','东至县','安徽,池州,东至','117.027533','30.111182',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1521,243159,2,242634,'341722000000','石台县','安徽,池州,石台','117.486306','30.210313',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1522,243254,2,242634,'341723000000','青阳县','安徽,池州,青阳','117.847362','30.639230',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1523,243400,2,243399,'341801000000','市辖区','安徽,宣城','118.758816','30.940718',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1524,243401,2,243399,'341802000000','宣州区','安徽,宣城,宣州','118.756328','30.946319',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1525,243636,2,243399,'341821000000','郎溪县','安徽,宣城,郎溪','119.179657','31.126412',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1526,243753,2,243399,'341822000000','广德县','安徽,宣城,广德','119.420935','30.877555',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1527,243902,2,243399,'341823000000','泾县','安徽,宣城,泾县','118.419864','30.688578',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1528,244058,2,243399,'341824000000','绩溪县','安徽,宣城,绩溪','118.578519','30.067533',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1529,244153,2,243399,'341825000000','旌德县','安徽,宣城,旌德','118.540487','30.286350',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1530,244232,2,243399,'341881000000','宁国市','安徽,宣城,宁国','118.982915','30.633571',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1531,244379,2,244378,'350101000000','市辖区','福建,福州','119.296494','26.074507',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1532,244380,2,244378,'350102000000','鼓楼区','福建,福州,鼓楼','119.303822','26.082294',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1533,244460,2,244378,'350103000000','台江区','福建,福州,台江','119.314054','26.052842',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1534,244523,2,244378,'350104000000','仓山区','福建,福州,仓山','119.273546','26.046744',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1535,244713,2,244378,'350105000000','马尾区','福建,福州,马尾','119.455589','25.989500',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1536,244793,2,244378,'350111000000','晋安区','福建,福州,晋安','119.328515','26.082105',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1537,244987,2,244378,'350121000000','闽侯县','福建,福州,闽侯','119.131725','26.150047',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1538,245329,2,244378,'350122000000','连江县','福建,福州,连江','119.539704','26.197364',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1539,245633,2,244378,'350123000000','罗源县','福建,福州,罗源','119.549776','26.489559',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1540,245845,2,244378,'350124000000','闽清县','福建,福州,闽清','118.863361','26.221198',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1541,246154,2,244378,'350125000000','永泰县','福建,福州,永泰','118.932592','25.866695',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1542,246443,2,244378,'350128000000','平潭县','福建,福州,平潭','119.790168','25.498720',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1543,246667,2,244378,'350181000000','福清市','福建,福州,福清','119.384334','25.721143',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1544,247200,2,244378,'350182000000','长乐市','福建,福州,长乐','119.523266','25.962888',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1545,247479,2,247478,'350201000000','市辖区','福建,厦门','118.089425','24.479833',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1546,247480,2,247478,'350203000000','思明区','福建,厦门,思明','118.082658','24.445567',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1547,247590,2,247478,'350205000000','海沧区','福建,厦门,海沧','118.032818','24.484503',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1548,247641,2,247478,'350206000000','湖里区','福建,厦门,湖里','118.146769','24.512905',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1549,247704,2,247478,'350211000000','集美区','福建,厦门,集美','118.097337','24.575970',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1550,247782,2,247478,'350212000000','同安区','福建,厦门,同安','118.152149','24.722747',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1551,247933,2,247478,'350213000000','翔安区','福建,厦门,翔安','118.248034','24.618544',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1552,248060,2,248059,'350301000000','市辖区','福建,莆田','119.007777','25.454084',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1553,248061,2,248059,'350302000000','城厢区','福建,莆田,城厢','118.993885','25.419319',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1554,248189,2,248059,'350303000000','涵江区','福建,莆田,涵江','119.116290','25.458720',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1555,248403,2,248059,'350304000000','荔城区','福建,莆田,荔城','119.015123','25.431979',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1556,248540,2,248059,'350305000000','秀屿区','福建,莆田,秀屿','119.105528','25.318672',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1557,248753,2,248059,'350322000000','仙游县','福建,莆田,仙游','118.691601','25.362094',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1558,249099,2,249098,'350401000000','市辖区','福建,三明','117.638678','26.263406',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1559,249100,2,249098,'350402000000','梅列区','福建,三明,梅列','117.645856','26.271711',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1560,249157,2,249098,'350403000000','三元区','福建,三明,三元','117.608045','26.234020',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1561,249245,2,249098,'350421000000','明溪县','福建,三明,明溪','117.201847','26.357379',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1562,249351,2,249098,'350423000000','清流县','福建,三明,清流','116.816909','26.177797',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1563,249484,2,249098,'350424000000','宁化县','福建,三明,宁化','116.654365','26.261754',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1564,249728,2,249098,'350425000000','大田县','福建,三明,大田','117.847115','25.692699',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1565,250026,2,249098,'350426000000','尤溪县','福建,三明,尤溪','118.190467','26.170171',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1566,250307,2,249098,'350427000000','沙县','福建,三明,沙县','117.792450','26.397300',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1567,250512,2,249098,'350428000000','将乐县','福建,三明,将乐','117.471373','26.728953',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1568,250680,2,249098,'350429000000','泰宁县','福建,三明,泰宁','117.175740','26.900259',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1569,250809,2,249098,'350430000000','建宁县','福建,三明,建宁','116.846084','26.830902',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1570,250920,2,249098,'350481000000','永安市','福建,三明,永安','117.365053','25.941937',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1571,251198,2,251197,'350501000000','市辖区','福建,泉州','118.675675','24.874132',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1572,251199,2,251197,'350502000000','鲤城区','福建,泉州,鲤城','118.586884','24.907581',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1573,251289,2,251197,'350503000000','丰泽区','福建,泉州,丰泽','118.613173','24.891173',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1574,251376,2,251197,'350504000000','洛江区','福建,泉州,洛江','118.671193','24.939796',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1575,251470,2,251197,'350505000000','泉港区','福建,泉州,泉港','118.916309','25.119815',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1576,251580,2,251197,'350521000000','惠安县','福建,泉州,惠安','118.796605','25.030781',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1577,251897,2,251197,'350524000000','安溪县','福建,泉州,安溪','118.186289','25.055955',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1578,252406,2,251197,'350525000000','永春县','福建,泉州,永春','118.294048','25.321565',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1579,252665,2,251197,'350526000000','德化县','福建,泉州,德化','118.241094','25.491494',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1580,252894,2,251197,'350527000000','金门县','福建,泉州,金门','118.317089','24.432706',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1581,252895,2,251197,'350581000000','石狮市','福建,泉州,石狮','118.648066','24.732204',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1582,253032,2,251197,'350582000000','晋江市','福建,泉州,晋江','118.552365','24.781681',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1583,253454,2,251197,'350583000000','南安市','福建,泉州,南安','118.386279','24.960385',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1584,253906,2,253905,'350601000000','市辖区','福建,漳州','117.647481','24.512948',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1585,253907,2,253905,'350602000000','芗城区','福建,漳州,芗城','117.653975','24.510900',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1586,254093,2,253905,'350603000000','龙文区','福建,漳州,龙文','117.709755','24.503113',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1587,254170,2,253905,'350622000000','云霄县','福建,漳州,云霄','117.339573','23.957936',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1588,254394,2,253905,'350623000000','漳浦县','福建,漳州,漳浦','117.613808','24.117102',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1589,254747,2,253905,'350624000000','诏安县','福建,漳州,诏安','117.175185','23.711579',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1590,255011,2,253905,'350625000000','长泰县','福建,漳州,长泰','117.759153','24.625449',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1591,255105,2,253905,'350626000000','东山县','福建,漳州,东山','117.430061','23.701262',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1592,255190,2,253905,'350627000000','南靖县','福建,漳州,南靖','117.357321','24.514654',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1593,255405,2,253905,'350628000000','平和县','福建,漳州,平和','117.314891','24.363437',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1594,255680,2,253905,'350629000000','华安县','福建,漳州,华安','117.534103','25.004425',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1595,255789,2,253905,'350681000000','龙海市','福建,漳州,龙海','117.818197','24.446706',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1596,256113,2,256112,'350701000000','市辖区','福建,南平','118.177708','26.641768',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1597,256114,2,256112,'350702000000','延平区','福建,南平,延平','118.181894','26.637457',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1598,256452,2,256112,'350703000000','建阳区','福建,南平,建阳','118.120464','27.331876',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1599,256687,2,256112,'350721000000','顺昌县','福建,南平,顺昌','117.810357','26.793288',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1600,256849,2,256112,'350722000000','浦城县','福建,南平,浦城','118.541256','27.917263',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1601,257172,2,256112,'350723000000','光泽县','福建,南平,光泽','117.334106','27.540988',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1602,257276,2,256112,'350724000000','松溪县','福建,南平,松溪','118.785468','27.526232',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1603,257395,2,256112,'350725000000','政和县','福建,南平,政和','118.857642','27.366104',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1604,257539,2,256112,'350781000000','邵武市','福建,南平,邵武','117.492534','27.340327',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1605,257733,2,256112,'350782000000','武夷山市','福建,南平,武夷山','118.035310','27.756648',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1606,257886,2,256112,'350783000000','建瓯市','福建,南平,建瓯','118.304988','27.022727',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1607,258161,2,258160,'350801000000','市辖区','福建,龙岩','117.017536','25.075123',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1608,258162,2,258160,'350802000000','新罗区','福建,龙岩,新罗','117.037264','25.098292',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1609,258520,2,258160,'350803000000','永定区','福建,龙岩,永定','116.732092','24.723962',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1610,258825,2,258160,'350821000000','长汀县','福建,龙岩,长汀','116.357581','25.833531',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1611,259144,2,258160,'350823000000','上杭县','福建,龙岩,上杭','116.420099','25.049518',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1612,259512,2,258160,'350824000000','武平县','福建,龙岩,武平','116.100342','25.095277',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1613,259749,2,258160,'350825000000','连城县','福建,龙岩,连城','116.754473','25.710539',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1614,260014,2,258160,'350881000000','漳平市','福建,龙岩,漳平','117.419998','25.290185',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1615,260231,2,260230,'350901000000','市辖区','福建,宁德','119.547932','26.665617',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1616,260232,2,260230,'350902000000','蕉城区','福建,宁德,蕉城','119.526299','26.660611',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1617,260575,2,260230,'350921000000','霞浦县','福建,宁德,霞浦','120.005643','26.885204',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1618,260905,2,260230,'350922000000','古田县','福建,宁德,古田','118.746284','26.577837',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1619,261211,2,260230,'350923000000','屏南县','福建,宁德,屏南','118.985895','26.908276',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1620,261382,2,260230,'350924000000','寿宁县','福建,宁德,寿宁','119.514987','27.454479',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1621,261602,2,260230,'350925000000','周宁县','福建,宁德,周宁','119.339025','27.104591',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1622,261759,2,260230,'350926000000','柘荣县','福建,宁德,柘荣','119.900609','27.233933',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1623,261885,2,260230,'350981000000','福安市','福建,宁德,福安','119.647770','27.088049',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1624,262395,2,260230,'350982000000','福鼎市','福建,宁德,福鼎','120.216978','27.324479',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1625,262700,2,262699,'360101000000','市辖区','江西,南昌','115.858197','28.682892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1626,262701,2,262699,'360102000000','东湖区','江西,南昌,东湖','115.899262','28.685085',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1627,262889,2,262699,'360103000000','西湖区','江西,南昌,西湖','115.877233','28.657595',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1628,263058,2,262699,'360104000000','青云谱区','江西,南昌,青云谱','115.925749','28.621169',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1629,263152,2,262699,'360105000000','湾里区','江西,南昌,湾里','115.730847','28.714796',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1630,263217,2,262699,'360111000000','青山湖区','江西,南昌,青山湖','115.962144','28.682985',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1631,263496,2,262699,'360112000000','新建区','江西,南昌,新建','115.815278','28.692864',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1632,263948,2,262699,'360121000000','南昌县','江西,南昌,南昌','115.944304','28.545602',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1633,264375,2,262699,'360123000000','安义县','江西,南昌,安义','115.549247','28.844507',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1634,264517,2,262699,'360124000000','进贤县','江西,南昌,进贤','116.240924','28.376918',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1635,264863,2,264862,'360201000000','市辖区','江西,景德镇','117.178419','29.268835',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1636,264864,2,264862,'360202000000','昌江区','江西,景德镇,昌江','117.183748','29.273435',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1637,264962,2,264862,'360203000000','珠山区','江西,景德镇,珠山','117.202893','29.299923',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1638,265083,2,264862,'360222000000','浮梁县','江西,景德镇,浮梁','117.215086','29.351681',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1639,265297,2,264862,'360281000000','乐平市','江西,景德镇,乐平','117.151796','28.978440',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1640,265678,2,265677,'360301000000','市辖区','江西,萍乡','113.854556','27.622768',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1641,265679,2,265677,'360302000000','安源区','江西,萍乡,安源','113.870730','27.615202',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1642,265826,2,265677,'360313000000','湘东区','江西,萍乡,湘东','113.733047','27.640075',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1643,265994,2,265677,'360321000000','莲花县','江西,萍乡,莲花','113.961465','27.127669',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1644,266171,2,265677,'360322000000','上栗县','江西,萍乡,上栗','113.795311','27.880302',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1645,266356,2,265677,'360323000000','芦溪县','江西,萍乡,芦溪','114.029828','27.630806',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1646,266522,2,266521,'360401000000','市辖区','江西,九江','116.001930','29.705077',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1647,266523,2,266521,'360402000000','濂溪区','江西,九江,濂溪','116.011380','29.678540',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1648,266665,2,266521,'360403000000','浔阳区','江西,九江,浔阳','115.990301','29.727593',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1649,266781,2,266521,'360421000000','九江县','江西,九江,九江','115.911323','29.608431',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1650,266946,2,266521,'360423000000','武宁县','江西,九江,武宁','115.100578','29.256323',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1651,267168,2,266521,'360424000000','修水县','江西,九江,修水','114.546702','29.026022',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1652,267613,2,266521,'360425000000','永修县','江西,九江,永修','115.832453','29.012297',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1653,267868,2,266521,'360426000000','德安县','江西,九江,德安','115.767484','29.298738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1654,267982,2,266521,'360428000000','都昌县','江西,九江,都昌','116.204099','29.273194',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1655,268318,2,266521,'360429000000','湖口县','江西,九江,湖口','116.251947','29.731101',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1656,268480,2,266521,'360430000000','彭泽县','江西,九江,彭泽','116.549359','29.896061',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1657,268689,2,266521,'360481000000','瑞昌市','江西,九江,瑞昌','115.681337','29.675874',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1658,268926,2,266521,'360482000000','共青城市','江西,九江,共青城','115.808844','29.248317',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1659,268995,2,266521,'360483000000','庐山市','江西,九江,庐山','116.045060','29.448128',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1660,269108,2,269107,'360501000000','市辖区','江西,新余','114.917346','27.817808',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1661,269109,2,269107,'360502000000','渝水区','江西,新余,渝水','114.944646','27.800387',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1662,269465,2,269107,'360521000000','分宜县','江西,新余,分宜','114.692050','27.814758',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1663,269655,2,269654,'360601000000','市辖区','江西,鹰潭','117.069202','28.260189',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1664,269656,2,269654,'360602000000','月湖区','江西,鹰潭,月湖','117.037137','28.239153',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1665,269746,2,269654,'360622000000','余江县','江西,鹰潭,余江','116.822763','28.206177',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1666,269942,2,269654,'360681000000','贵溪市','江西,鹰潭,贵溪','117.245497','28.292519',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1667,270223,2,270222,'360701000000','市辖区','江西,赣州','114.935029','25.831829',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1668,270224,2,270222,'360702000000','章贡区','江西,赣州,章贡','114.921171','25.817816',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1669,270442,2,270222,'360703000000','南康区','江西,赣州,南康','114.765403','25.661471',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1670,270780,2,270222,'360721000000','赣县','江西,赣州,赣县','115.011561','25.860691',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1671,271095,2,270222,'360722000000','信丰县','江西,赣州,信丰','114.922830','25.386704',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1672,271410,2,270222,'360723000000','大余县','江西,赣州,大余','114.362112','25.401314',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1673,271541,2,270222,'360724000000','上犹县','江西,赣州,上犹','114.551138','25.785172',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1674,271699,2,270222,'360725000000','崇义县','江西,赣州,崇义','114.308267','25.681784',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1675,271848,2,270222,'360726000000','安远县','江西,赣州,安远','115.393922','25.136927',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1676,272033,2,270222,'360727000000','龙南县','江西,赣州,龙南','114.789873','24.911069',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1677,272156,2,270222,'360728000000','定南县','江西,赣州,定南','115.027845','24.784410',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1678,272302,2,270222,'360729000000','全南县','江西,赣州,全南','114.530125','24.742403',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1679,272408,2,270222,'360730000000','宁都县','江西,赣州,宁都','116.009472','26.470116',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1680,272767,2,270222,'360731000000','于都县','江西,赣州,于都','115.415508','25.952069',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1681,273183,2,270222,'360732000000','兴国县','江西,赣州,兴国','115.363190','26.337937',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1682,273525,2,270222,'360733000000','会昌县','江西,赣州,会昌','115.786057','25.600272',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1683,273820,2,270222,'360734000000','寻乌县','江西,赣州,寻乌','115.646636','24.963371',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1684,274020,2,270222,'360735000000','石城县','江西,赣州,石城','116.346995','26.314775',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1685,274184,2,270222,'360781000000','瑞金市','江西,赣州,瑞金','116.027135','25.885555',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1686,274445,2,274444,'360801000000','市辖区','江西,吉安','114.992509','27.113443',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1687,274446,2,274444,'360802000000','吉州区','江西,吉安,吉州','114.994764','27.143801',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1688,274592,2,274444,'360803000000','青原区','江西,吉安,青原','115.014812','27.081977',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1689,274736,2,274444,'360821000000','吉安县','江西,吉安,吉安','114.907733','27.039890',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1690,275105,2,274444,'360822000000','吉水县','江西,吉安,吉水','115.135507','27.229632',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1691,275406,2,274444,'360823000000','峡江县','江西,吉安,峡江','115.316566','27.582901',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1692,275511,2,274444,'360824000000','新干县','江西,吉安,新干','115.387052','27.740192',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1693,275694,2,274444,'360825000000','永丰县','江西,吉安,永丰','115.444320','27.318852',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1694,275956,2,274444,'360826000000','泰和县','江西,吉安,泰和','114.908869','26.789960',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1695,276331,2,274444,'360827000000','遂川县','江西,吉安,遂川','114.520537','26.313737',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1696,276700,2,274444,'360828000000','万安县','江西,吉安,万安','114.786182','26.458254',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1697,276874,2,274444,'360829000000','安福县','江西,吉安,安福','114.619893','27.392874',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1698,277170,2,274444,'360830000000','永新县','江西,吉安,永新','114.243096','26.945002',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1699,277459,2,274444,'360881000000','井冈山市','江西,吉安,井冈山','114.289228','26.748081',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1700,277616,2,277615,'360901000000','市辖区','江西,宜春','114.416778','27.815619',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1701,277617,2,277615,'360902000000','袁州区','江西,宜春,袁州','114.424657','27.798846',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1702,278033,2,277615,'360921000000','奉新县','江西,宜春,奉新','115.400491','28.688423',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1703,278249,2,277615,'360922000000','万载县','江西,宜春,万载','114.445523','28.106004',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1704,278471,2,277615,'360923000000','上高县','江西,宜春,上高','114.947594','28.238509',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1705,278710,2,277615,'360924000000','宜丰县','江西,宜春,宜丰','114.803515','28.393666',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1706,278975,2,277615,'360925000000','靖安县','江西,宜春,靖安','115.362629','28.861479',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1707,279095,2,277615,'360926000000','铜鼓县','江西,宜春,铜鼓','114.371172','28.520770',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1708,279220,2,277615,'360981000000','丰城市','江西,宜春,丰城','115.771094','28.159142',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1709,279845,2,277615,'360982000000','樟树市','江西,宜春,樟树','115.546385','28.054814',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1710,280166,2,277615,'360983000000','高安市','江西,宜春,高安','115.375616','28.417255',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1711,280563,2,280562,'361001000000','市辖区','江西,抚州','116.358181','27.949217',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1712,280564,2,280562,'361002000000','临川区','江西,抚州,临川','116.312167','27.934573',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1713,281098,2,280562,'361021000000','南城县','江西,抚州,南城','116.637040','27.569678',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1714,281285,2,280562,'361022000000','黎川县','江西,抚州,黎川','116.907681','27.282333',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1715,281443,2,280562,'361023000000','南丰县','江西,抚州,南丰','116.525725','27.218445',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1716,281641,2,280562,'361024000000','崇仁县','江西,抚州,崇仁','116.061101','27.764394',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1717,281827,2,280562,'361025000000','乐安县','江西,抚州,乐安','115.830481','27.428765',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1718,282036,2,280562,'361026000000','宜黄县','江西,抚州,宜黄','116.222128','27.546146',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1719,282206,2,280562,'361027000000','金溪县','江西,抚州,金溪','116.755058','27.918959',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1720,282391,2,280562,'361028000000','资溪县','江西,抚州,资溪','117.060264','27.706102',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1721,282482,2,280562,'361029000000','东乡县','江西,抚州,东乡县','116.603560','28.247697',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1722,282684,2,280562,'361030000000','广昌县','江西,抚州,广昌','116.325757','26.837267',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1723,282842,2,282841,'361101000000','市辖区','江西,上饶','117.943433','28.454862',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1724,282843,2,282841,'361102000000','信州区','江西,上饶,信州','117.966460','28.431002',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1725,282978,2,282841,'361103000000','广丰区','江西,上饶,广丰','118.191240','28.436286',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1726,283240,2,282841,'361121000000','上饶县','江西,上饶,上饶','117.907850','28.448983',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1727,283511,2,282841,'361123000000','玉山县','江西,上饶,玉山','118.245124','28.682055',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1728,283769,2,282841,'361124000000','铅山县','江西,上饶,铅山','117.709451','28.315217',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1729,283970,2,282841,'361125000000','横峰县','江西,上饶,横峰','117.596452','28.407118',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1730,284066,2,282841,'361126000000','弋阳县','江西,上饶,弋阳','117.449588','28.378044',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1731,284239,2,282841,'361127000000','余干县','江西,上饶,余干','116.695647','28.702302',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1732,284706,2,282841,'361128000000','鄱阳县','江西,上饶,鄱阳','116.699746','29.011699',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1733,285319,2,282841,'361129000000','万年县','江西,上饶,万年','117.058445','28.694582',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1734,285488,2,282841,'361130000000','婺源县','江西,上饶,婺源','117.861798','29.248086',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1735,285711,2,282841,'361181000000','德兴市','江西,上饶,德兴','117.578713','28.946464',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1736,285862,2,285861,'370101000000','市辖区','山东,济南','117.119999','36.651216',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1737,285863,2,285861,'370102000000','历下区','山东,济南,历下','117.076455','36.666412',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1738,285991,2,285861,'370103000000','市中区','山东,济南,市中','116.997777','36.651474',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1739,286215,2,285861,'370104000000','槐荫区','山东,济南,槐荫','116.901224','36.651441',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1740,286404,2,285861,'370105000000','天桥区','山东,济南,天桥','116.987492','36.678016',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1741,286683,2,285861,'370112000000','历城区','山东,济南,历城','117.065237','36.680017',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1742,287424,2,285861,'370113000000','长清区','山东,济南,长清','116.751937','36.553571',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1743,288084,2,285861,'370124000000','平阴县','山东,济南,平阴','116.456187','36.289265',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1744,288448,2,285861,'370125000000','济阳县','山东,济南,济阳','117.173525','36.978537',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1745,289313,2,285861,'370126000000','商河县','山东,济南,商河','117.157183','37.309045',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1746,290291,2,285861,'370181000000','章丘市','山东,济南,章丘','117.526228','36.681259',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1747,291236,2,291235,'370201000000','市辖区','山东,青岛','120.382639','36.067082',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1748,291237,2,291235,'370202000000','市南区','山东,青岛,市南','120.412392','36.075651',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1749,291313,2,291235,'370203000000','市北区','山东,青岛,市北','120.374731','36.087609',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1750,291468,2,291235,'370211000000','黄岛区','山东,青岛,黄岛','120.046190','35.872664',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1751,292713,2,291235,'370212000000','崂山区','山东,青岛,崂山','120.468956','36.107538',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1752,292879,2,291235,'370213000000','李沧区','山东,青岛,李沧','120.432697','36.145463',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1753,293008,2,291235,'370214000000','城阳区','山东,青岛,城阳','120.396310','36.307064',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1754,293241,2,291235,'370281000000','胶州市','山东,青岛,胶州','120.033382','36.264680',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1755,294138,2,291235,'370282000000','即墨市','山东,青岛,即墨','120.447128','36.389639',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1756,295251,2,291235,'370283000000','平度市','山东,青岛,平度','119.988420','36.776358',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1757,297121,2,291235,'370285000000','莱西市','山东,青岛,莱西','120.517690','36.889084',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1758,298026,2,298025,'370301000000','市辖区','山东,淄博','118.054927','36.813487',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1759,298027,2,298025,'370302000000','淄川区','山东,淄博,淄川','117.966723','36.643452',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1760,298507,2,298025,'370303000000','张店区','山东,淄博,张店','118.017913','36.806674',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1761,298821,2,298025,'370304000000','博山区','山东,淄博,博山','117.861677','36.494721',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1762,299159,2,298025,'370305000000','临淄区','山东,淄博,临淄','118.309118','36.826981',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1763,299652,2,298025,'370306000000','周村区','山东,淄博,周村','117.869886','36.803072',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1764,299919,2,298025,'370321000000','桓台县','山东,淄博,桓台','118.097923','36.959804',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1765,300276,2,298025,'370322000000','高青县','山东,淄博,高青','117.826916','37.171063',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1766,301056,2,298025,'370323000000','沂源县','山东,淄博,沂源','118.170856','36.185038',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1767,301712,2,301711,'370401000000','市辖区','山东,枣庄','117.323725','34.810487',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1768,301713,2,301711,'370402000000','市中区','山东,枣庄,市中','117.556123','34.864114',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1769,301888,2,301711,'370403000000','薛城区','山东,枣庄,薛城','117.263164','34.795063',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1770,302179,2,301711,'370404000000','峄城区','山东,枣庄,峄城','117.590816','34.773263',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1771,302532,2,301711,'370405000000','台儿庄区','山东,枣庄,台儿庄','117.733832','34.562528',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1772,302750,2,301711,'370406000000','山亭区','山东,枣庄,山亭','117.461517','35.099528',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1773,303037,2,301711,'370481000000','滕州市','山东,枣庄,滕州','117.165824','35.114156',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1774,304310,2,304309,'370501000000','市辖区','山东,东营','118.674767','37.434751',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1775,304311,2,304309,'370502000000','东营区','山东,东营,东营','118.582184','37.448963',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1776,304647,2,304309,'370503000000','河口区','山东,东营,河口','118.525543','37.886162',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1777,304845,2,304309,'370505000000','垦利区','山东,东营,垦利','118.674767','37.434751',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1778,305208,2,304309,'370522000000','利津县','山东,东营,利津','118.255273','37.490260',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1779,305747,2,304309,'370523000000','广饶县','山东,东营,广饶','118.407107','37.053555',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1780,306340,2,306339,'370601000000','市辖区','山东,烟台','121.447935','37.463822',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1781,306341,2,306339,'370602000000','芝罘区','山东,烟台,芝罘','121.400031','37.540687',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1782,306496,2,306339,'370611000000','福山区','山东,烟台,福山','121.267741','37.498246',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1783,306743,2,306339,'370612000000','牟平区','山东,烟台,牟平','121.600512','37.386901',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1784,307348,2,306339,'370613000000','莱山区','山东,烟台,莱山','121.445151','37.511361',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1785,307481,2,306339,'370634000000','长岛县','山东,烟台,长岛','120.736580','37.921368',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1786,307530,2,306339,'370681000000','龙口市','山东,烟台,龙口','120.477813','37.646108',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1787,308140,2,306339,'370682000000','莱阳市','山东,烟台,莱阳','120.711673','36.978941',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1788,308953,2,306339,'370683000000','莱州市','山东,烟台,莱州','119.942327','37.177017',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1789,309985,2,306339,'370684000000','蓬莱市','山东,烟台,蓬莱','120.758848','37.810661',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1790,310581,2,306339,'370685000000','招远市','山东,烟台,招远','120.434072','37.355469',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1791,311342,2,306339,'370686000000','栖霞市','山东,烟台,栖霞','120.849675','37.335123',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1792,312312,2,306339,'370687000000','海阳市','山东,烟台,海阳','121.158434','36.776378',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1793,313064,2,313063,'370701000000','市辖区','山东,潍坊','119.161755','36.706774',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1794,313065,2,313063,'370702000000','潍城区','山东,潍坊,潍城','119.024836','36.728100',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1795,313327,2,313063,'370703000000','寒亭区','山东,潍坊,寒亭','119.219734','36.775491',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1796,313701,2,313063,'370704000000','坊子区','山东,潍坊,坊子','119.166485','36.654448',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1797,314288,2,313063,'370705000000','奎文区','山东,潍坊,奎文','119.132486','36.707676',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1798,314533,2,313063,'370724000000','临朐县','山东,潍坊,临朐','118.542982','36.512506',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1799,314894,2,313063,'370725000000','昌乐县','山东,潍坊,昌乐','118.829914','36.706945',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1800,315273,2,313063,'370781000000','青州市','山东,潍坊,青州','118.479636','36.684600',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1801,316361,2,313063,'370782000000','诸城市','山东,潍坊,诸城','119.410103','35.995654',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1802,316642,2,313063,'370783000000','寿光市','山东,潍坊,寿光','118.790652','36.855480',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1803,317633,2,313063,'370784000000','安丘市','山东,潍坊,安丘','119.218978','36.478494',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1804,318512,2,313063,'370785000000','高密市','山东,潍坊,高密','119.755597','36.382595',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1805,319478,2,313063,'370786000000','昌邑市','山东,潍坊,昌邑','119.398525','36.858820',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1806,320180,2,320179,'370801000000','市辖区','山东,济宁','116.587098','35.414921',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1807,320181,2,320179,'370811000000','任城区','山东,济宁,任城','116.595050','35.406596',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1808,320795,2,320179,'370812000000','兖州区','山东,济宁,兖州','116.783834','35.553144',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1809,321246,2,320179,'370826000000','微山县','山东,济宁,微山','117.128828','34.806554',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1810,321804,2,320179,'370827000000','鱼台县','山东,济宁,鱼台','116.650608','35.012749',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1811,322209,2,320179,'370828000000','金乡县','山东,济宁,金乡','116.311532','35.066620',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1812,322882,2,320179,'370829000000','嘉祥县','山东,济宁,嘉祥','116.342442','35.407829',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1813,323607,2,320179,'370830000000','汶上县','山东,济宁,汶上','116.489043','35.732799',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1814,324118,2,320179,'370831000000','泗水县','山东,济宁,泗水','117.251195','35.664323',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1815,324729,2,320179,'370832000000','梁山县','山东,济宁,梁山','116.096044','35.802306',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1816,325372,2,320179,'370881000000','曲阜市','山东,济宁,曲阜','116.986503','35.580996',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1817,325791,2,320179,'370883000000','邹城市','山东,济宁,邹城','117.003743','35.405185',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1818,326707,2,326706,'370901000000','市辖区','山东,泰安','117.087614','36.200252',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1819,326708,2,326706,'370902000000','泰山区','山东,泰安,泰山','117.135354','36.192084',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1820,326926,2,326706,'370911000000','岱岳区','山东,泰安,岱岳','117.041582','36.187990',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1821,327655,2,326706,'370921000000','宁阳县','山东,泰安,宁阳','116.805797','35.758787',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1822,328231,2,326706,'370923000000','东平县','山东,泰安,东平','116.470304','35.937102',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1823,328962,2,326706,'370982000000','新泰市','山东,泰安,新泰','117.767953','35.909032',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1824,329897,2,326706,'370983000000','肥城市','山东,泰安,肥城','116.768358','36.182572',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1825,330548,2,330547,'371001000000','市辖区','山东,威海','122.120419','37.513068',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1826,330549,2,330547,'371002000000','环翠区','山东,威海,环翠','122.123444','37.501991',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1827,330748,2,330547,'371003000000','文登区','山东,威海,文登','122.057941','37.193886',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1828,331529,2,330547,'371082000000','荣成市','山东,威海,荣成','122.486658','37.165160',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1829,332496,2,330547,'371083000000','乳山市','山东,威海,乳山','121.539765','36.919816',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1830,333141,2,333140,'371101000000','市辖区','山东,日照','119.526888','35.416377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1831,333142,2,333140,'371102000000','东港区','山东,日照,东港','119.462228','35.425475',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1832,333755,2,333140,'371103000000','岚山区','山东,日照,岚山','119.318929','35.121884',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1833,334188,2,333140,'371121000000','五莲县','山东,日照,五莲','119.206763','35.751927',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1834,334833,2,333140,'371122000000','莒县','山东,日照,莒县','118.837064','35.579868',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1835,336051,2,336050,'371201000000','市辖区','山东,莱芜','117.676723','36.213813',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1836,336052,2,336050,'371202000000','莱城区','山东,莱芜,莱城','117.659884','36.203180',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1837,336908,2,336050,'371203000000','钢城区','山东,莱芜,钢城','117.811355','36.058572',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1838,337145,2,337144,'371301000000','市辖区','山东,临沂','118.356448','35.104672',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1839,337146,2,337144,'371302000000','兰山区','山东,临沂,兰山','118.347731','35.051734',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1840,337621,2,337144,'371311000000','罗庄区','山东,临沂,罗庄','118.284786','34.996741',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1841,337844,2,337144,'371312000000','河东区','山东,临沂,河东','118.402893','35.089917',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1842,338188,2,337144,'371321000000','沂南县','山东,临沂,沂南','118.465213','35.549976',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1843,338778,2,337144,'371322000000','郯城县','山东,临沂,郯城','118.367263','34.613557',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1844,339408,2,337144,'371323000000','沂水县','山东,临沂,沂水','118.627918','35.790450',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1845,340490,2,337144,'371324000000','兰陵县','山东,临沂,兰陵','118.070650','34.857149',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1846,341532,2,337144,'371325000000','费县','山东,临沂,费县','117.977325','35.265961',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1847,342020,2,337144,'371326000000','平邑县','山东,临沂,平邑','117.640352','35.505943',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1848,342766,2,337144,'371327000000','莒南县','山东,临沂,莒南','118.835163','35.174846',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1849,343361,2,337144,'371328000000','蒙阴县','山东,临沂,蒙阴','117.945085','35.710032',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1850,343836,2,337144,'371329000000','临沭县','山东,临沂,临沭','118.650782','34.919852',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1851,344134,2,344133,'371401000000','市辖区','山东,德州','116.357464','37.434092',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1852,344135,2,344133,'371402000000','德城区','山东,德州,德城','116.299471','37.450805',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1853,344244,2,344133,'371403000000','陵城区','山东,德州,陵城','116.576092','37.335794',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1854,345248,2,344133,'371422000000','宁津县','山东,德州,宁津','116.800306','37.652190',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1855,346117,2,344133,'371423000000','庆云县','山东,德州,庆云','117.385257','37.775350',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1856,346518,2,344133,'371424000000','临邑县','山东,德州,临邑','116.866800','37.189798',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1857,346715,2,344133,'371425000000','齐河县','山东,德州,齐河','116.762810','36.783415',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1858,347749,2,344133,'371426000000','平原县','山东,德州,平原','116.434056','37.165314',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1859,347943,2,344133,'371427000000','夏津县','山东,德州,夏津','116.001726','36.948371',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1860,348268,2,344133,'371428000000','武城县','山东,德州,武城','116.069302','37.213311',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1861,348472,2,344133,'371481000000','乐陵市','山东,德州,乐陵','117.231935','37.729907',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1862,348980,2,344133,'371482000000','禹城市','山东,德州,禹城','116.638327','36.933812',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1863,349383,2,349382,'371501000000','市辖区','山东,聊城','115.985371','36.456703',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1864,349384,2,349382,'371502000000','东昌府区','山东,聊城,东昌府','115.988491','36.434645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1865,350543,2,349382,'371521000000','阳谷县','山东,聊城,阳谷','115.791820','36.114392',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1866,351436,2,349382,'371522000000','莘县','山东,聊城,莘县','115.671191','36.233598',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1867,352587,2,349382,'371523000000','茌平县','山东,聊城,茌平','115.985371','36.456703',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1868,353334,2,349382,'371524000000','东阿县','山东,聊城,东阿','116.247580','36.334917',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1869,353863,2,349382,'371525000000','冠县','山东,聊城,冠县','115.442740','36.484009',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1870,354643,2,349382,'371526000000','高唐县','山东,聊城,高唐','116.230158','36.846755',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1871,355301,2,349382,'371581000000','临清市','山东,聊城,临清','115.704881','36.838277',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1872,355973,2,355972,'371601000000','市辖区','山东,滨州','117.970703','37.381990',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1873,355974,2,355972,'371602000000','滨城区','山东,滨州,滨城','118.019326','37.430724',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1874,356960,2,355972,'371603000000','沾化区','山东,滨州,沾化','118.098902','37.699260',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1875,357420,2,355972,'371621000000','惠民县','山东,滨州,惠民','117.509921','37.489877',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1876,358556,2,355972,'371622000000','阳信县','山东,滨州,阳信','117.578262','37.641106',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1877,359424,2,355972,'371623000000','无棣县','山东,滨州,无棣','117.625696','37.770260',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1878,360038,2,355972,'371625000000','博兴县','山东,滨州,博兴','118.131815','37.150226',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1879,360507,2,355972,'371626000000','邹平县','山东,滨州,邹平','117.743109','36.862989',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1880,361376,2,361375,'371701000000','市辖区','山东,菏泽','115.480656','35.233750',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1881,361377,2,361375,'371702000000','牡丹区','山东,菏泽,牡丹','115.417827','35.252512',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1882,361988,2,361375,'371703000000','定陶区','山东,菏泽,定陶','115.569619','35.072701',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1883,362368,2,361375,'371721000000','曹县','山东,菏泽,曹县','115.542328','34.825508',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1884,363576,2,361375,'371722000000','单县','山东,菏泽,单县','116.107428','34.778808',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1885,364107,2,361375,'371723000000','成武县','山东,菏泽,成武','115.889765','34.952459',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1886,364606,2,361375,'371724000000','巨野县','山东,菏泽,巨野','116.065396','35.387374',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1887,365498,2,361375,'371725000000','郓城县','山东,菏泽,郓城','115.943613','35.599758',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1888,366562,2,361375,'371726000000','鄄城县','山东,菏泽,鄄城','115.510193','35.563408',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1889,366971,2,361375,'371728000000','东明县','山东,菏泽,东明','115.089905','35.289368',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1890,367397,2,367396,'410101000000','市辖区','河南,郑州','113.625368','34.746599',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1891,367398,2,367396,'410102000000','中原区','河南,郑州,中原','113.612850','34.748257',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1892,367563,2,367396,'410103000000','二七区','河南,郑州,二七','113.640179','34.723930',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1893,367741,2,367396,'410104000000','管城回族区','河南,郑州,管城','113.625368','34.746599',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1894,367877,2,367396,'410105000000','金水区','河南,郑州,金水','113.660555','34.800156',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1895,368151,2,367396,'410106000000','上街区','河南,郑州,上街','113.308961','34.802780',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1896,368217,2,367396,'410108000000','惠济区','河南,郑州,惠济','113.616901','34.867458',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1897,368291,2,367396,'410122000000','中牟县','河南,郑州,中牟','113.976254','34.718937',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1898,368635,2,367396,'410181000000','巩义市','河南,郑州,巩义','113.022497','34.747834',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1899,368975,2,367396,'410182000000','荥阳市','河南,郑州,荥阳','113.383221','34.787375',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1900,369293,2,367396,'410183000000','新密市','河南,郑州,新密','113.390891','34.539443',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1901,369663,2,367396,'410184000000','新郑市','河南,郑州,新郑','113.740529','34.395562',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1902,369963,2,367396,'410185000000','登封市','河南,郑州,登封','113.050492','34.453667',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1903,370305,2,370304,'410201000000','市辖区','河南,开封','114.307581','34.797239',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1904,370306,2,370304,'410202000000','龙亭区','河南,开封,龙亭','114.354730','34.815784',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1905,370373,2,370304,'410203000000','顺河回族区','河南,开封,顺河','114.369716','34.811344',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1906,370450,2,370304,'410204000000','鼓楼区','河南,开封,鼓楼','114.348307','34.788561',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1907,370501,2,370304,'410205000000','禹王台区','河南,开封,禹王台','114.348170','34.777104',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1908,370557,2,370304,'410211000000','金明区','河南,开封,金明','114.307581','34.797239',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1909,370634,2,370304,'410212000000','祥符区','河南,开封,祥符','114.441327','34.756921',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1910,370995,2,370304,'410221000000','杞县','河南,开封,杞县','114.783041','34.549166',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1911,371618,2,370304,'410222000000','通许县','河南,开封,通许','114.467467','34.480433',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1912,371942,2,370304,'410223000000','尉氏县','河南,开封,尉氏','114.193081','34.411494',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1913,372481,2,370304,'410225000000','兰考县','河南,开封,兰考','114.821348','34.822211',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1914,372972,2,372971,'410301000000','市辖区','河南,洛阳','112.454040','34.619682',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1915,372973,2,372971,'410302000000','老城区','河南,洛阳,老城','112.469024','34.683646',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1916,373030,2,372971,'410303000000','西工区','河南,洛阳,西工','112.428413','34.659900',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1917,373105,2,372971,'410304000000','瀍河回族区','河南,洛阳,瀍河','112.479653','34.714976',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1918,373143,2,372971,'410305000000','涧西区','河南,洛阳,涧西','112.395756','34.658034',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1919,373227,2,372971,'410306000000','吉利区','河南,洛阳,吉利','112.589052','34.900889',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1920,373268,2,372971,'410311000000','洛龙区','河南,洛阳,洛龙','112.464173','34.619404',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1921,373554,2,372971,'410322000000','孟津县','河南,洛阳,孟津','112.445252','34.825307',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1922,373799,2,372971,'410323000000','新安县','河南,洛阳,新安','112.132488','34.728584',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1923,374121,2,372971,'410324000000','栾川县','河南,洛阳,栾川','111.615769','33.785698',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1924,374349,2,372971,'410325000000','嵩县','河南,洛阳,嵩县','112.085634','34.134517',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1925,374694,2,372971,'410326000000','汝阳县','河南,洛阳,汝阳','112.473139','34.153940',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1926,374929,2,372971,'410327000000','宜阳县','河南,洛阳,宜阳','112.179238','34.514645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1927,375308,2,372971,'410328000000','洛宁县','河南,洛阳,洛宁','111.653039','34.389414',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1928,375717,2,372971,'410329000000','伊川县','河南,洛阳,伊川','112.425651','34.421460',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1929,376105,2,372971,'410381000000','偃师市','河南,洛阳,偃师','112.789535','34.727220',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1930,376366,2,376365,'410401000000','市辖区','河南,平顶山','113.192661','33.766169',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1931,376367,2,376365,'410402000000','新华区','河南,平顶山,新华','113.293999','33.737365',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1932,376442,2,376365,'410403000000','卫东区','河南,平顶山,卫东','113.335193','33.734707',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1933,376513,2,376365,'410404000000','石龙区','河南,平顶山,石龙','112.898818','33.898713',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1934,376532,2,376365,'410411000000','湛河区','河南,平顶山,湛河','113.320873','33.725681',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1935,376643,2,376365,'410421000000','宝丰县','河南,平顶山,宝丰','113.054754','33.868441',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1936,376984,2,376365,'410422000000','叶县','河南,平顶山,叶县','113.357239','33.626731',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1937,377555,2,376365,'410423000000','鲁山县','河南,平顶山,鲁山','112.908023','33.738518',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1938,378139,2,376365,'410425000000','郏县','河南,平顶山,郏县','113.212609','33.971787',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1939,378532,2,376365,'410481000000','舞钢市','河南,平顶山,舞钢','113.524794','33.307776',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1940,378764,2,376365,'410482000000','汝州市','河南,平顶山,汝州','112.844517','34.167030',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1941,379246,2,379245,'410501000000','市辖区','河南,安阳','114.392392','36.097577',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1942,379247,2,379245,'410502000000','文峰区','河南,安阳,文峰','114.357082','36.090468',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1943,379400,2,379245,'410503000000','北关区','河南,安阳,北关','114.355822','36.107255',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1944,379488,2,379245,'410505000000','殷都区','河南,安阳,殷都','114.303410','36.109890',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1945,379584,2,379245,'410506000000','龙安区','河南,安阳,龙安','114.323522','36.095568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1946,379742,2,379245,'410522000000','安阳县','河南,安阳,安阳','114.130207','36.130585',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1947,380371,2,379245,'410523000000','汤阴县','河南,安阳,汤阴','114.357763','35.924515',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1948,380688,2,379245,'410526000000','滑县','河南,安阳,滑县','114.518997','35.575002',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1949,381731,2,379245,'410527000000','内黄县','河南,安阳,内黄','114.901492','35.971653',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1950,382281,2,379245,'410581000000','林州市','河南,安阳,林州','113.820130','36.083047',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1951,382879,2,382878,'410601000000','市辖区','河南,鹤壁','114.297272','35.747225',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1952,382880,2,382878,'410602000000','鹤山区','河南,鹤壁,鹤山','114.163367','35.954582',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1953,382969,2,382878,'410603000000','山城区','河南,鹤壁,山城','114.184428','35.897703',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1954,383079,2,382878,'410611000000','淇滨区','河南,鹤壁,淇滨','114.298694','35.741296',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1955,383228,2,382878,'410621000000','浚县','河南,鹤壁,浚县','114.550813','35.676240',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1956,383704,2,382878,'410622000000','淇县','河南,鹤壁,淇县','114.197651','35.607762',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1957,383891,2,383890,'410701000000','市辖区','河南,新乡','113.926800','35.303004',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1958,383892,2,383890,'410702000000','红旗区','河南,新乡,红旗','113.875245','35.303851',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1959,383978,2,383890,'410703000000','卫滨区','河南,新乡,卫滨','113.865780','35.302117',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1960,384041,2,383890,'410704000000','凤泉区','河南,新乡,凤泉','113.915184','35.383978',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1961,384093,2,383890,'410711000000','牧野区','河南,新乡,牧野','113.908772','35.315039',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1962,384193,2,383890,'410721000000','新乡县','河南,新乡,新乡','113.805205','35.190836',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1963,384380,2,383890,'410724000000','获嘉县','河南,新乡,获嘉','113.657433','35.259808',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1964,384622,2,383890,'410725000000','原阳县','河南,新乡,原阳','113.940115','35.065587',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1965,385122,2,383890,'410726000000','延津县','河南,新乡,延津','114.205197','35.141956',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1966,385485,2,383890,'410727000000','封丘县','河南,新乡,封丘','114.418882','35.041198',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1967,386113,2,383890,'410728000000','长垣县','河南,新乡,长垣','114.668936','35.201548',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1968,386744,2,383890,'410781000000','卫辉市','河南,新乡,卫辉','114.064907','35.398494',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1969,387125,2,383890,'410782000000','辉县市','河南,新乡,辉','113.926800','35.303004',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1970,387708,2,387707,'410801000000','市辖区','河南,焦作','113.241823','35.215892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1971,387709,2,387707,'410802000000','解放区','河南,焦作,解放','113.230817','35.240282',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1972,387776,2,387707,'410803000000','中站区','河南,焦作,中站','113.182946','35.236820',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1973,387836,2,387707,'410804000000','马村区','河南,焦作,马村','113.322332','35.256108',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1974,387922,2,387707,'410811000000','山阳区','河南,焦作,山阳','113.254881','35.214507',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1975,387985,2,387707,'410821000000','修武县','河南,焦作,修武','113.447755','35.223514',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1976,388187,2,387707,'410822000000','博爱县','河南,焦作,博爱','113.064379','35.171045',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1977,388415,2,387707,'410823000000','武陟县','河南,焦作,武陟','113.401679','35.099378',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1978,388783,2,387707,'410825000000','温县','河南,焦作,温县','113.080530','34.940189',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1979,389064,2,387707,'410882000000','沁阳市','河南,焦作,沁阳','112.950716','35.087539',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1980,389418,2,387707,'410883000000','孟州市','河南,焦作,孟州','112.789612','34.907970',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1981,389720,2,389719,'410901000000','市辖区','河南,濮阳','115.029215','35.761829',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1982,389721,2,389719,'410902000000','华龙区','河南,濮阳,华龙','115.074151','35.777346',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1983,389884,2,389719,'410922000000','清丰县','河南,濮阳,清丰','115.104389','35.885180',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1984,390411,2,389719,'410923000000','南乐县','河南,濮阳,南乐','115.204752','36.069664',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1985,390751,2,389719,'410926000000','范县','河南,濮阳,范县','115.504201','35.851907',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1986,391345,2,389719,'410927000000','台前县','河南,濮阳,台前','115.871906','35.969390',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1987,391730,2,389719,'410928000000','濮阳县','河南,濮阳,濮阳','115.029078','35.712193',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1988,392738,2,392737,'411001000000','市辖区','河南,许昌','113.852640','34.035506',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1989,392739,2,392737,'411002000000','魏都区','河南,许昌,魏都','113.822647','34.025342',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1990,392850,2,392737,'411023000000','许昌县','河南,许昌,许昌','113.822983','34.124660',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1991,393306,2,392737,'411024000000','鄢陵县','河南,许昌,鄢陵','114.177400','34.102332',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1992,393705,2,392737,'411025000000','襄城县','河南,许昌,襄城','113.482453','33.846369',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1993,394170,2,392737,'411081000000','禹州市','河南,许昌,禹州','113.488478','34.140701',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1994,394863,2,392737,'411082000000','长葛市','河南,许昌,长葛','113.819888','34.194136',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1995,395255,2,395254,'411101000000','市辖区','河南,漯河','114.016539','33.581412',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1996,395256,2,395254,'411102000000','源汇区','河南,漯河,源汇','114.017948','33.565441',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1997,395392,2,395254,'411103000000','郾城区','河南,漯河,郾城','114.006944','33.587409',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1998,395601,2,395254,'411104000000','召陵区','河南,漯河,召陵','114.093902','33.586565',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (1999,395816,2,395254,'411121000000','舞阳县','河南,漯河,舞阳','113.609286','33.437877',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2000,396228,2,395254,'411122000000','临颍县','河南,漯河,临颍','113.931203','33.827304',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2001,396612,2,396611,'411201000000','市辖区','河南,三门峡','111.200135','34.772493',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2002,396613,2,396611,'411202000000','湖滨区','河南,三门峡,湖滨','111.188398','34.770886',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2003,396710,2,396611,'411203000000','陕州区','河南,三门峡,陕州','111.103563','34.720548',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2004,396996,2,396611,'411221000000','渑池县','河南,三门峡,渑池','111.761504','34.767244',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2005,397257,2,396611,'411224000000','卢氏县','河南,三门峡,卢氏','111.047858','34.054324',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2006,397644,2,396611,'411281000000','义马市','河南,三门峡,义马','111.874393','34.747129',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2007,397687,2,396611,'411282000000','灵宝市','河南,三门峡,灵宝','110.894220','34.516828',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2008,398170,2,398169,'411301000000','市辖区','河南,南阳','112.528321','32.990833',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2009,398171,2,398169,'411302000000','宛城区','河南,南阳,宛城','112.539559','33.003784',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2010,398437,2,398169,'411303000000','卧龙区','河南,南阳,卧龙','112.528789','32.989877',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2011,398747,2,398169,'411321000000','南召县','河南,南阳,南召','112.429133','33.489877',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2012,399117,2,398169,'411322000000','方城县','河南,南阳,方城','113.012494','33.254391',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2013,399702,2,398169,'411323000000','西峡县','河南,南阳,西峡','111.473530','33.307294',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2014,400021,2,398169,'411324000000','镇平县','河南,南阳,镇平','112.234698','33.034111',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2015,400474,2,398169,'411325000000','内乡县','河南,南阳,内乡','111.849392','33.044865',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2016,400787,2,398169,'411326000000','淅川县','河南,南阳,淅川','111.490964','33.137820',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2017,401305,2,398169,'411327000000','社旗县','河南,南阳,社旗','112.948245','33.056109',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2018,401579,2,398169,'411328000000','唐河县','河南,南阳,唐河','112.807637','32.681335',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2019,402141,2,398169,'411329000000','新野县','河南,南阳,新野','112.360026','32.520805',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2020,402429,2,398169,'411330000000','桐柏县','河南,南阳,桐柏','113.428287','32.380073',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2021,402668,2,398169,'411381000000','邓州市','河南,南阳,邓州','112.087278','32.687938',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2022,403312,2,403311,'411401000000','市辖区','河南,商丘','115.656370','34.414172',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2023,403313,2,403311,'411402000000','梁园区','河南,商丘,梁园','115.613965','34.443893',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2024,403577,2,403311,'411403000000','睢阳区','河南,商丘,睢阳','115.653302','34.388390',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2025,403992,2,403311,'411421000000','民权县','河南,商丘,民权','115.179594','34.647758',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2026,404572,2,403311,'411422000000','睢县','河南,商丘,睢县','115.071879','34.445656',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2027,405150,2,403311,'411423000000','宁陵县','河南,商丘,宁陵','115.313690','34.460232',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2028,405530,2,403311,'411424000000','柘城县','河南,商丘,柘城','115.305843','34.091045',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2029,406070,2,403311,'411425000000','虞城县','河南,商丘,虞城','115.840511','34.402512',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2030,406717,2,403311,'411426000000','夏邑县','河南,商丘,夏邑','116.131447','34.237554',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'); INSERT INTO `eb_system_city` (`id`, `city_id`, `level`, `parent_id`, `area_code`, `name`, `merger_name`, `lng`, `lat`, `is_show`, `create_time`, `update_time`) VALUES (2031,407487,2,403311,'411481000000','永城市','河南,商丘,永城','116.449500','33.929291',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2032,408288,2,408287,'411501000000','市辖区','河南,信阳','114.091023','32.146983',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2033,408289,2,408287,'411502000000','浉河区','河南,信阳,浉河','114.058713','32.116803',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2034,408566,2,408287,'411503000000','平桥区','河南,信阳,平桥','114.125656','32.101031',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2035,408914,2,408287,'411521000000','罗山县','河南,信阳,罗山','114.513012','32.203073',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2036,409241,2,408287,'411522000000','光山县','河南,信阳,光山','114.919033','32.011103',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2037,409621,2,408287,'411523000000','新县','河南,信阳,新县','114.879239','31.643918',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2038,409844,2,408287,'411524000000','商城县','河南,信阳,商城','115.406862','31.798378',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2039,410235,2,408287,'411525000000','固始县','河南,信阳,固始','115.654482','32.168137',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2040,410916,2,408287,'411526000000','潢川县','河南,信阳,潢川','115.051808','32.131383',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2041,411226,2,408287,'411527000000','淮滨县','河南,信阳,淮滨','115.419538','32.473258',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2042,411541,2,408287,'411528000000','息县','河南,信阳,息县','114.740456','32.342792',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2043,411926,2,411925,'411601000000','市辖区','河南,周口','114.696951','33.626149',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2044,411927,2,411925,'411602000000','川汇区','河南,周口,川汇','114.650628','33.647598',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2045,412097,2,411925,'411621000000','扶沟县','河南,周口,扶沟','114.394915','34.059862',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2046,412526,2,411925,'411622000000','西华县','河南,周口,西华','114.529756','33.767408',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2047,413030,2,411925,'411623000000','商水县','河南,周口,商水','114.611596','33.542480',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2048,413644,2,411925,'411624000000','沈丘县','河南,周口,沈丘','115.098583','33.409369',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2049,414239,2,411925,'411625000000','郸城县','河南,周口,郸城','115.177189','33.644743',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2050,414779,2,411925,'411626000000','淮阳县','河南,周口,淮阳','114.886154','33.731561',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2051,415271,2,411925,'411627000000','太康县','河南,周口,太康','114.837887','34.063798',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2052,416070,2,411925,'411628000000','鹿邑县','河南,周口,鹿邑','115.484454','33.860000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2053,416651,2,411925,'411681000000','项城市','河南,周口,项城','114.875333','33.465838',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2054,417175,2,417174,'411701000000','市辖区','河南,驻马店','114.022298','33.011529',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2055,417176,2,417174,'411702000000','驿城区','河南,驻马店,驿城','113.993914','32.973054',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2056,417405,2,417174,'411721000000','西平县','河南,驻马店,西平','114.021539','33.387685',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2057,417712,2,417174,'411722000000','上蔡县','河南,驻马店,上蔡','114.264381','33.262439',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2058,418199,2,417174,'411723000000','平舆县','河南,驻马店,平舆','114.619159','32.962710',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2059,418443,2,417174,'411724000000','正阳县','河南,驻马店,正阳','114.392774','32.605697',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2060,418759,2,417174,'411725000000','确山县','河南,驻马店,确山','114.026430','32.802065',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2061,418973,2,417174,'411726000000','泌阳县','河南,驻马店,泌阳','113.327144','32.723975',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2062,419354,2,417174,'411727000000','汝南县','河南,驻马店,汝南','114.362379','33.006729',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2063,419654,2,417174,'411728000000','遂平县','河南,驻马店,遂平','114.013182','33.145649',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2064,419874,2,417174,'411729000000','新蔡县','河南,驻马店,新蔡','114.965469','32.744855',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2065,420259,2,420258,'419001000000','济源市','河南,济源','112.602341','35.069031',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2066,420826,2,420825,'420101000000','市辖区','湖北,武汉','114.305392','30.593098',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2067,420827,2,420825,'420102000000','江岸区','湖北,武汉,江岸','114.309091','30.600064',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2068,420996,2,420825,'420103000000','江汉区','湖北,武汉,江汉','114.270871','30.601430',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2069,421122,2,420825,'420104000000','硚口区','湖北,武汉,硚口','114.214920','30.582202',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2070,421270,2,420825,'420105000000','汉阳区','湖北,武汉,汉阳','114.218724','30.553905',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2071,421400,2,420825,'420106000000','武昌区','湖北,武汉,武昌','114.316223','30.554235',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2072,421559,2,420825,'420107000000','青山区','湖北,武汉,青山','114.385539','30.639630',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2073,421676,2,420825,'420111000000','洪山区','湖北,武汉,洪山','114.343913','30.500317',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2074,421983,2,420825,'420112000000','东西湖区','湖北,武汉,东西湖','114.136886','30.620020',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2075,422149,2,420825,'420113000000','汉南区','湖北,武汉,汉南','114.084445','30.308856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2076,422220,2,420825,'420114000000','蔡甸区','湖北,武汉,蔡甸','114.029328','30.582271',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2077,422631,2,420825,'420115000000','江夏区','湖北,武汉,江夏','114.321551','30.375748',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2078,423075,2,420825,'420116000000','黄陂区','湖北,武汉,黄陂','114.375743','30.882557',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2079,423775,2,420825,'420117000000','新洲区','湖北,武汉,新洲','114.801107','30.841544',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2080,424450,2,424449,'420201000000','市辖区','湖北,黄石','115.038520','30.199652',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2081,424451,2,424449,'420202000000','黄石港区','湖北,黄石,黄石港','115.065978','30.223003',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2082,424489,2,424449,'420203000000','西塞山区','湖北,黄石,西塞山','115.109955','30.204924',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2083,424531,2,424449,'420204000000','下陆区','湖北,黄石,下陆','114.961327','30.173913',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2084,424574,2,424449,'420205000000','铁山区','湖北,黄石,铁山','114.901412','30.206592',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2085,424590,2,424449,'420222000000','阳新县','湖北,黄石,阳新','115.215227','29.830258',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2086,425070,2,424449,'420281000000','大冶市','湖北,黄石,大冶','114.979875','30.095643',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2087,425509,2,425508,'420301000000','市辖区','湖北,十堰','110.797990','32.629397',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2088,425510,2,425508,'420302000000','茅箭区','湖北,十堰,茅箭','110.813621','32.591929',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2089,425592,2,425508,'420303000000','张湾区','湖北,十堰,张湾','110.769133','32.652297',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2090,425709,2,425508,'420304000000','郧阳区','湖北,十堰,郧阳','110.812050','32.834776',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2091,426078,2,425508,'420322000000','郧西县','湖北,十堰,郧西','110.425983','32.993182',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2092,426440,2,425508,'420323000000','竹山县','湖北,十堰,竹山','110.228694','32.224875',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2093,426708,2,425508,'420324000000','竹溪县','湖北,十堰,竹溪','109.715304','32.318255',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2094,427085,2,425508,'420325000000','房县','湖北,十堰,房县','110.726670','32.040085',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2095,427420,2,425508,'420381000000','丹江口市','湖北,十堰,丹江口','111.513127','32.540157',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2096,427711,2,427710,'420501000000','市辖区','湖北,宜昌','111.286471','30.691967',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2097,427712,2,427710,'420502000000','西陵区','湖北,宜昌,西陵','111.285646','30.710782',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2098,427828,2,427710,'420503000000','伍家岗区','湖北,宜昌,伍家岗','111.361037','30.644334',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2099,427894,2,427710,'420504000000','点军区','湖北,宜昌,点军','111.268120','30.693247',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2100,427953,2,427710,'420505000000','猇亭区','湖北,宜昌,猇亭','111.434620','30.530903',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2101,427983,2,427710,'420506000000','夷陵区','湖北,宜昌,夷陵','111.326380','30.770006',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2102,428194,2,427710,'420525000000','远安县','湖北,宜昌,远安','111.640508','31.060869',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2103,428319,2,427710,'420526000000','兴山县','湖北,宜昌,兴山','110.746805','31.348196',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2104,428424,2,427710,'420527000000','秭归县','湖北,宜昌,秭归','110.977711','30.825897',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2105,428630,2,427710,'420528000000','长阳土家族自治县','湖北,宜昌,长阳','111.207242','30.472763',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2106,428807,2,427710,'420529000000','五峰土家族自治县','湖北,宜昌,五峰','110.674706','30.199688',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2107,428924,2,427710,'420581000000','宜都市','湖北,宜昌,宜都','111.450006','30.378327',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2108,429089,2,427710,'420582000000','当阳市','湖北,宜昌,当阳','111.788312','30.821266',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2109,429273,2,427710,'420583000000','枝江市','湖北,宜昌,枝江','111.760530','30.425940',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2110,429502,2,429501,'420601000000','市辖区','湖北,襄阳','112.122414','32.008986',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2111,429503,2,429501,'420602000000','襄城区','湖北,襄阳,襄城','112.133974','32.010351',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2112,429687,2,429501,'420606000000','樊城区','湖北,襄阳,樊城','112.135684','32.044833',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2113,429907,2,429501,'420607000000','襄州区','湖北,襄阳,襄州','112.211899','32.087298',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2114,430402,2,429501,'420624000000','南漳县','湖北,襄阳,南漳','111.838905','31.774636',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2115,430723,2,429501,'420625000000','谷城县','湖北,襄阳,谷城','111.652982','32.263849',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2116,431025,2,429501,'420626000000','保康县','湖北,襄阳,保康','111.261309','31.878310',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2117,431301,2,429501,'420682000000','老河口市','湖北,襄阳,老河口','111.683861','32.359068',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2118,431575,2,429501,'420683000000','枣阳市','湖北,襄阳,枣阳','112.771959','32.128818',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2119,432166,2,429501,'420684000000','宜城市','湖北,襄阳,宜城','112.257788','31.719806',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2120,432416,2,432415,'420701000000','市辖区','湖北,鄂州','114.894843','30.391940',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2121,432417,2,432415,'420702000000','梁子湖区','湖北,鄂州,梁子湖','114.684731','30.100141',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2122,432510,2,432415,'420703000000','华容区','湖北,鄂州,华容','114.729878','30.534310',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2123,432633,2,432415,'420704000000','鄂城区','湖北,鄂州,鄂城','114.891615','30.400572',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2124,432830,2,432829,'420801000000','市辖区','湖北,荆门','112.199265','31.035423',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2125,432831,2,432829,'420802000000','东宝区','湖北,荆门,东宝','112.201493','31.051852',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2126,433052,2,432829,'420804000000','掇刀区','湖北,荆门,掇刀','112.207833','30.973431',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2127,433182,2,432829,'420821000000','京山县','湖北,荆门,京山','113.119566','31.018457',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2128,433634,2,432829,'420822000000','沙洋县','湖北,荆门,沙洋','112.588581','30.709221',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2129,433944,2,432829,'420881000000','钟祥市','湖北,荆门,钟祥','112.588121','31.167820',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2130,434549,2,434548,'420901000000','市辖区','湖北,孝感','113.916902','30.924568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2131,434550,2,434548,'420902000000','孝南区','湖北,孝感,孝南','113.910958','30.916874',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2132,435091,2,434548,'420921000000','孝昌县','湖北,孝感,孝昌','113.998010','31.258159',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2133,435563,2,434548,'420922000000','大悟县','湖北,孝感,大悟','114.127022','31.561165',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2134,435956,2,434548,'420923000000','云梦县','湖北,孝感,云梦','113.753554','31.020983',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2135,436267,2,434548,'420981000000','应城市','湖北,孝感,应城','113.572707','30.928370',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2136,436706,2,434548,'420982000000','安陆市','湖北,孝感,安陆','113.688941','31.255610',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2137,437119,2,434548,'420984000000','汉川市','湖北,孝感,汉川','113.839149','30.661244',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2138,437780,2,437779,'421001000000','市辖区','湖北,荆州','112.239741','30.335165',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2139,437781,2,437779,'421002000000','沙市区','湖北,荆州,沙市','112.255583','30.311056',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2140,437909,2,437779,'421003000000','荆州区','湖北,荆州,荆州','112.190185','30.352832',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2141,438103,2,437779,'421022000000','公安县','湖北,荆州,公安','112.229648','30.058336',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2142,438512,2,437779,'421023000000','监利县','湖北,荆州,监利','112.897465','29.811574',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2143,439263,2,437779,'421024000000','江陵县','湖北,荆州,江陵','112.424664','30.041822',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2144,439491,2,437779,'421081000000','石首市','湖北,荆州,石首','112.425454','29.720938',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2145,439836,2,437779,'421083000000','洪湖市','湖北,荆州,洪湖','113.475980','29.825458',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2146,440344,2,437779,'421087000000','松滋市','湖北,荆州,松滋','111.756773','30.174522',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2147,440640,2,440639,'421101000000','市辖区','湖北,黄冈','114.872316','30.453905',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2148,440641,2,440639,'421102000000','黄州区','湖北,黄冈,黄州','114.879398','30.434050',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2149,440797,2,440639,'421121000000','团风县','湖北,黄冈,团风','114.872191','30.643569',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2150,441110,2,440639,'421122000000','红安县','湖北,黄冈,红安','114.618236','31.288153',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2151,441550,2,440639,'421123000000','罗田县','湖北,黄冈,罗田','115.399492','30.783100',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2152,442017,2,440639,'421124000000','英山县','湖北,黄冈,英山','115.681259','30.734959',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2153,442351,2,440639,'421125000000','浠水县','湖北,黄冈,浠水','115.265535','30.451867',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2154,443040,2,440639,'421126000000','蕲春县','湖北,黄冈,蕲春','115.437008','30.225964',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2155,443641,2,440639,'421127000000','黄梅县','湖北,黄冈,黄梅','115.944219','30.070454',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2156,444186,2,440639,'421181000000','麻城市','湖北,黄冈,麻城','115.008163','31.172740',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2157,444684,2,440639,'421182000000','武穴市','湖北,黄冈,武穴','115.561217','29.844107',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2158,445041,2,445040,'421201000000','市辖区','湖北,咸宁','114.322492','29.841443',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2159,445042,2,445040,'421202000000','咸安区','湖北,咸宁,咸安','114.298711','29.852892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2160,445249,2,445040,'421221000000','嘉鱼县','湖北,咸宁,嘉鱼','113.939277','29.970737',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2161,445363,2,445040,'421222000000','通城县','湖北,咸宁,通城','113.816966','29.245269',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2162,445569,2,445040,'421223000000','崇阳县','湖北,咸宁,崇阳','114.039828','29.555605',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2163,445786,2,445040,'421224000000','通山县','湖北,咸宁,通山','114.482606','29.605376',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2164,446007,2,445040,'421281000000','赤壁市','湖北,咸宁,赤壁','113.900628','29.724692',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2165,446213,2,446212,'421301000000','市辖区','湖北,随州','113.382458','31.690215',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2166,446214,2,446212,'421303000000','曾都区','湖北,随州,曾都','113.371121','31.716280',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2167,446433,2,446212,'421321000000','随县','湖北,随州,随县','113.299528','31.853833',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2168,446847,2,446212,'421381000000','广水市','湖北,随州,广水','113.825890','31.616854',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2169,447269,2,447268,'422801000000','恩施市','湖北,恩施,恩施','109.479665','30.294680',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2170,447495,2,447268,'422802000000','利川市','湖北,恩施,利川','108.936376','30.290996',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2171,448099,2,447268,'422822000000','建始县','湖北,恩施,建始','109.726667','30.601555',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2172,448521,2,447268,'422823000000','巴东县','湖北,恩施,巴东','110.340756','31.042324',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2173,448856,2,447268,'422825000000','宣恩县','湖北,恩施,宣恩','109.491485','29.986899',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2174,449150,2,447268,'422826000000','咸丰县','湖北,恩施,咸丰','109.139726','29.665203',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2175,449431,2,447268,'422827000000','来凤县','湖北,恩施,来凤','109.407828','29.493485',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2176,449636,2,447268,'422828000000','鹤峰县','湖北,恩施,鹤峰','110.033662','29.890171',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2177,449866,2,449865,'429004000000','仙桃市','湖北,仙桃','113.442970','30.328407',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2178,450653,2,449865,'429005000000','潜江市','湖北,潜江','112.900284','30.401947',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2179,451150,2,449865,'429006000000','天门市','湖北,天门','113.166557','30.663719',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2180,452034,2,449865,'429021000000','神农架林区','湖北,神农架林','110.675758','31.744898',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2181,452125,2,452124,'430101000000','市辖区','湖南,长沙','112.938814','28.228209',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2182,452126,2,452124,'430102000000','芙蓉区','湖南,长沙,芙蓉','113.032539','28.185386',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2183,452213,2,452124,'430103000000','天心区','湖南,长沙,天心','112.989855','28.112525',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2184,452314,2,452124,'430104000000','岳麓区','湖南,长沙,岳麓','112.931383','28.235243',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2185,452486,2,452124,'430105000000','开福区','湖南,长沙,开福','112.985545','28.257269',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2186,452610,2,452124,'430111000000','雨花区','湖南,长沙,雨花','113.038017','28.137710',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2187,452771,2,452124,'430112000000','望城区','湖南,长沙,望城','112.819549','28.347458',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2188,452924,2,452124,'430121000000','长沙县','湖南,长沙,长沙','113.080810','28.246150',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2189,453140,2,452124,'430124000000','宁乡县','湖南,长沙,宁乡','112.551885','28.277483',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2190,453444,2,452124,'430181000000','浏阳市','湖南,长沙,浏阳','113.643076','28.162833',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2191,453800,2,453799,'430201000000','市辖区','湖南,株洲','113.134002','27.827550',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2192,453801,2,453799,'430202000000','荷塘区','湖南,株洲,荷塘','113.173487','27.855929',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2193,453867,2,453799,'430203000000','芦淞区','湖南,株洲,芦淞','113.152724','27.785070',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2194,453957,2,453799,'430204000000','石峰区','湖南,株洲,石峰','113.117732','27.875445',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2195,454008,2,453799,'430211000000','天元区','湖南,株洲,天元','113.082216','27.826867',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2196,454113,2,453799,'430221000000','株洲县','湖南,株洲,株洲','113.144006','27.699346',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2197,454261,2,453799,'430223000000','攸县','湖南,株洲,攸县','113.345309','27.000227',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2198,454580,2,453799,'430224000000','茶陵县','湖南,株洲,茶陵','113.539280','26.777492',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2199,454845,2,453799,'430225000000','炎陵县','湖南,株洲,炎陵','113.772655','26.489902',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2200,454989,2,453799,'430281000000','醴陵市','湖南,株洲,醴陵','113.496894','27.646130',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2201,455284,2,455283,'430301000000','市辖区','湖南,湘潭','112.944049','27.829738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2202,455285,2,455283,'430302000000','雨湖区','湖南,湘潭,雨湖','112.907238','27.856250',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2203,455426,2,455283,'430304000000','岳塘区','湖南,湘潭,岳塘','112.969480','27.872028',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2204,455515,2,455283,'430321000000','湘潭县','湖南,湘潭,湘潭','112.950831','27.778958',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2205,455889,2,455283,'430381000000','湘乡市','湖南,湘潭,湘乡','112.535028','27.734120',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2206,456260,2,455283,'430382000000','韶山市','湖南,湘潭,韶山','112.526671','27.915009',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2207,456304,2,456303,'430401000000','市辖区','湖南,衡阳','112.571997','26.893230',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2208,456305,2,456303,'430405000000','珠晖区','湖南,衡阳,珠晖','112.620112','26.894657',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2209,456391,2,456303,'430406000000','雁峰区','湖南,衡阳,雁峰','112.616546','26.888666',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2210,456449,2,456303,'430407000000','石鼓区','湖南,衡阳,石鼓','112.598089','26.943215',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2211,456502,2,456303,'430408000000','蒸湘区','湖南,衡阳,蒸湘','112.567064','26.911404',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2212,456558,2,456303,'430412000000','南岳区','湖南,衡阳,南岳','112.738604','27.232444',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2213,456587,2,456303,'430421000000','衡阳县','湖南,衡阳,衡阳','112.370532','26.969635',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2214,457104,2,456303,'430422000000','衡南县','湖南,衡阳,衡南','112.677877','26.738248',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2215,457576,2,456303,'430423000000','衡山县','湖南,衡阳,衡山','112.868268','27.230291',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2216,457742,2,456303,'430424000000','衡东县','湖南,衡阳,衡东','112.953168','27.081170',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2217,458018,2,456303,'430426000000','祁东县','湖南,衡阳,祁东','112.090357','26.799896',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2218,458411,2,456303,'430481000000','耒阳市','湖南,衡阳,耒阳','112.859795','26.422275',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2219,458820,2,456303,'430482000000','常宁市','湖南,衡阳,常宁','112.399995','26.420932',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2220,459252,2,459251,'430501000000','市辖区','湖南,邵阳','111.467791','27.238892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2221,459253,2,459251,'430502000000','双清区','湖南,邵阳,双清','111.496341','27.232708',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2222,459357,2,459251,'430503000000','大祥区','湖南,邵阳,大祥','111.439091','27.221452',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2223,459470,2,459251,'430511000000','北塔区','湖南,邵阳,北塔','111.452197','27.246489',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2224,459517,2,459251,'430521000000','邵东县','湖南,邵阳,邵东','111.744258','27.258942',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2225,460126,2,459251,'430522000000','新邵县','湖南,邵阳,新邵','111.458657','27.320918',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2226,460558,2,459251,'430523000000','邵阳县','湖南,邵阳,邵阳','111.273806','26.990637',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2227,461014,2,459251,'430524000000','隆回县','湖南,邵阳,隆回','111.032438','27.113978',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2228,461613,2,459251,'430525000000','洞口县','湖南,邵阳,洞口','110.575846','27.060321',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2229,462000,2,459251,'430527000000','绥宁县','湖南,邵阳,绥宁','110.155655','26.581955',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2230,462257,2,459251,'430528000000','新宁县','湖南,邵阳,新宁','110.856623','26.433418',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2231,462600,2,459251,'430529000000','城步苗族自治县','湖南,邵阳,城步','111.467791','27.238892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2232,462807,2,459251,'430581000000','武冈市','湖南,邵阳,武冈','110.631884','26.726599',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2233,463142,2,463141,'430601000000','市辖区','湖南,岳阳','113.128958','29.357104',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2234,463143,2,463141,'430602000000','岳阳楼区','湖南,岳阳,岳阳楼','113.129702','29.371903',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2235,463333,2,463141,'430603000000','云溪区','湖南,岳阳,云溪','113.272313','29.472746',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2236,463397,2,463141,'430611000000','君山区','湖南,岳阳,君山','113.006435','29.461106',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2237,463489,2,463141,'430621000000','岳阳县','湖南,岳阳,岳阳','113.116418','29.144067',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2238,463722,2,463141,'430623000000','华容县','湖南,岳阳,华容','112.540463','29.531057',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2239,463961,2,463141,'430624000000','湘阴县','湖南,岳阳,湘阴','112.909426','28.689105',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2240,464180,2,463141,'430626000000','平江县','湖南,岳阳,平江','113.581234','28.701868',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2241,464747,2,463141,'430681000000','汨罗市','湖南,岳阳,汨罗','113.067259','28.806890',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2242,464944,2,463141,'430682000000','临湘市','湖南,岳阳,临湘','113.450423','29.476849',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2243,465106,2,465105,'430701000000','市辖区','湖南,常德','111.698497','29.031673',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2244,465107,2,465105,'430702000000','武陵区','湖南,常德,武陵','111.683153','29.055163',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2245,465295,2,465105,'430703000000','鼎城区','湖南,常德,鼎城','111.680783','29.018593',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2246,465661,2,465105,'430721000000','安乡县','湖南,常德,安乡','112.171131','29.411309',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2247,465844,2,465105,'430722000000','汉寿县','湖南,常德,汉寿','111.970514','28.906107',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2248,466173,2,465105,'430723000000','澧县','湖南,常德,澧县','111.758702','29.633237',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2249,466483,2,465105,'430724000000','临澧县','湖南,常德,临澧','111.647518','29.440793',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2250,466654,2,465105,'430725000000','桃源县','湖南,常德,桃源','111.488925','28.902503',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2251,467112,2,465105,'430726000000','石门县','湖南,常德,石门','111.380014','29.584293',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2252,467471,2,465105,'430781000000','津市市','湖南,常德,津','111.698497','29.031673',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2253,467563,2,467562,'430801000000','市辖区','湖南,张家界','110.479191','29.117096',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2254,467564,2,467562,'430802000000','永定区','湖南,张家界,永定','110.537138','29.119856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2255,467841,2,467562,'430811000000','武陵源区','湖南,张家界,武陵源','110.550434','29.345730',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2256,467881,2,467562,'430821000000','慈利县','湖南,张家界,慈利','111.139711','29.429972',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2257,468338,2,467562,'430822000000','桑植县','湖南,张家界,桑植','110.204911','29.414264',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2258,468661,2,468660,'430901000000','市辖区','湖南,益阳','112.355180','28.553860',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2259,468662,2,468660,'430902000000','资阳区','湖南,益阳,资阳','112.324322','28.590966',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2260,468790,2,468660,'430903000000','赫山区','湖南,益阳,赫山','112.374024','28.579343',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2261,469015,2,468660,'430921000000','南县','湖南,益阳,南县','112.396241','29.361338',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2262,469192,2,468660,'430922000000','桃江县','湖南,益阳,桃江','112.155822','28.518085',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2263,469452,2,468660,'430923000000','安化县','湖南,益阳,安化','111.212846','28.374107',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2264,469909,2,468660,'430981000000','沅江市','湖南,益阳,沅江','112.355954','28.847045',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2265,470124,2,470123,'431001000000','市辖区','湖南,郴州','113.014717','25.770509',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2266,470125,2,470123,'431002000000','北湖区','湖南,郴州,北湖','113.011035','25.784054',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2267,470300,2,470123,'431003000000','苏仙区','湖南,郴州,苏仙','113.042441','25.800370',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2268,470500,2,470123,'431021000000','桂阳县','湖南,郴州,桂阳','112.734176','25.754167',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2269,470894,2,470123,'431022000000','宜章县','湖南,郴州,宜章','112.948772','25.399792',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2270,471178,2,470123,'431023000000','永兴县','湖南,郴州,永兴','113.116528','26.127151',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2271,471473,2,470123,'431024000000','嘉禾县','湖南,郴州,嘉禾','112.369021','25.587520',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2272,471685,2,470123,'431025000000','临武县','湖南,郴州,临武','112.563456','25.275560',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2273,471908,2,470123,'431026000000','汝城县','湖南,郴州,汝城','113.684727','25.532816',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2274,472174,2,470123,'431027000000','桂东县','湖南,郴州,桂东','113.944614','26.077616',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2275,472301,2,470123,'431028000000','安仁县','湖南,郴州,安仁','113.269441','26.709056',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2276,472477,2,470123,'431081000000','资兴市','湖南,郴州,资兴','113.236146','25.976243',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2277,472710,2,472709,'431101000000','市辖区','湖南,永州','111.613445','26.420394',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2278,472711,2,472709,'431102000000','零陵区','湖南,永州,零陵','111.631109','26.221936',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2279,473062,2,472709,'431103000000','冷水滩区','湖南,永州,冷水滩','111.592143','26.461077',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2280,473284,2,472709,'431121000000','祁阳县','湖南,永州,祁阳','111.840657','26.580120',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2281,473871,2,472709,'431122000000','东安县','湖南,永州,东安','111.314117','26.394404',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2282,474233,2,472709,'431123000000','双牌县','湖南,永州,双牌','111.659967','25.961910',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2283,474367,2,472709,'431124000000','道县','湖南,永州,道县','111.600796','25.526438',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2284,474761,2,472709,'431125000000','江永县','湖南,永州,江永','111.343911','25.273539',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2285,474883,2,472709,'431126000000','宁远县','湖南,永州,宁远','111.945805','25.570976',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2286,475326,2,472709,'431127000000','蓝山县','湖南,永州,蓝山','112.196731','25.369898',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2287,475574,2,472709,'431128000000','新田县','湖南,永州,新田','112.203287','25.904305',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2288,475819,2,472709,'431129000000','江华瑶族自治县','湖南,永州,江华','111.579305','25.185590',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2289,476149,2,476148,'431201000000','市辖区','湖南,怀化','109.998488','27.554978',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2290,476150,2,476148,'431202000000','鹤城区','湖南,怀化,鹤城','110.040315','27.578926',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2291,476288,2,476148,'431221000000','中方县','湖南,怀化,中方','109.944712','27.440139',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2292,476449,2,476148,'431222000000','沅陵县','湖南,怀化,沅陵','110.393844','28.452686',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2293,476874,2,476148,'431223000000','辰溪县','湖南,怀化,辰溪','110.183917','28.006336',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2294,477191,2,476148,'431224000000','溆浦县','湖南,怀化,溆浦','110.594921','27.908281',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2295,477633,2,476148,'431225000000','会同县','湖南,怀化,会同','109.735661','26.887239',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2296,477895,2,476148,'431226000000','麻阳苗族自治县','湖南,怀化,麻阳','109.802587','27.865548',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2297,478135,2,476148,'431227000000','新晃侗族自治县','湖南,怀化,新晃','109.174932','27.352673',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2298,478299,2,476148,'431228000000','芷江侗族自治县','湖南,怀化,芷江','109.684629','27.443499',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2299,478536,2,476148,'431229000000','靖州苗族侗族自治县','湖南,怀化,靖州','109.696311','26.575052',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2300,478685,2,476148,'431230000000','通道侗族自治县','湖南,怀化,通道','109.784412','26.158054',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2301,478864,2,476148,'431281000000','洪江市','湖南,怀化,洪江','109.836669','27.208609',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2302,479104,2,479103,'431301000000','市辖区','湖南,娄底','111.993497','27.700062',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2303,479105,2,479103,'431302000000','娄星区','湖南,娄底,娄星','112.001936','27.729924',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2304,479285,2,479103,'431321000000','双峰县','湖南,娄底,双峰','112.175246','27.456658',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2305,479889,2,479103,'431322000000','新化县','湖南,娄底,新化','111.327412','27.726515',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2306,480606,2,479103,'431381000000','冷水江市','湖南,娄底,冷水江','111.435623','27.685850',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2307,480767,2,479103,'431382000000','涟源市','湖南,娄底,涟源','111.664316','27.692542',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2308,481320,2,481319,'433101000000','吉首市','湖南,湘西,吉首','109.698055','28.262507',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2309,481465,2,481319,'433122000000','泸溪县','湖南,湘西,泸溪','110.219610','28.216641',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2310,481626,2,481319,'433123000000','凤凰县','湖南,湘西,凤凰','109.598719','27.948116',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2311,481925,2,481319,'433124000000','花垣县','湖南,湘西,花垣','109.482078','28.572030',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2312,482179,2,481319,'433125000000','保靖县','湖南,湘西,保靖','109.660577','28.699774',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2313,482377,2,481319,'433126000000','古丈县','湖南,湘西,古丈','109.950728','28.616935',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2314,482506,2,481319,'433127000000','永顺县','湖南,湘西,永顺','109.851254','29.001440',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2315,482831,2,481319,'433130000000','龙山县','湖南,湘西,龙山','109.443939','29.457663',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2316,483252,2,483251,'440101000000','市辖区','广东,广州','113.264434','23.129162',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2317,483253,2,483251,'440103000000','荔湾区','广东,广州,荔湾','113.244261','23.125981',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2318,483462,2,483251,'440104000000','越秀区','广东,广州,越秀','113.266841','23.128524',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2319,483703,2,483251,'440105000000','海珠区','广东,广州,海珠','113.317388','23.083801',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2320,483979,2,483251,'440106000000','天河区','广东,广州,天河','113.361200','23.124680',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2321,484218,2,483251,'440111000000','白云区','广东,广州,白云','113.273289','23.157290',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2322,484627,2,483251,'440112000000','黄埔区','广东,广州,黄埔','113.459749','23.106402',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2323,484770,2,483251,'440113000000','番禺区','广东,广州,番禺','113.384129','22.937244',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2324,485059,2,483251,'440114000000','花都区','广东,广州,花都','113.220218','23.404165',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2325,485312,2,483251,'440115000000','南沙区','广东,广州,南沙','113.525172','22.801627',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2326,485489,2,483251,'440117000000','从化区','广东,广州,从化','113.586605','23.548852',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2327,485776,2,483251,'440118000000','增城区','广东,广州,增城','113.810860','23.261141',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2328,486130,2,486129,'440201000000','市辖区','广东,韶关','113.597522','24.810403',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2329,486131,2,486129,'440203000000','武江区','广东,韶关,武江','113.587774','24.792924',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2330,486223,2,486129,'440204000000','浈江区','广东,韶关,浈江','113.611098','24.804381',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2331,486345,2,486129,'440205000000','曲江区','广东,韶关,曲江','113.604549','24.682728',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2332,486469,2,486129,'440222000000','始兴县','广东,韶关,始兴','114.061789','24.952977',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2333,486609,2,486129,'440224000000','仁化县','广东,韶关,仁化','113.749027','25.085621',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2334,486746,2,486129,'440229000000','翁源县','广东,韶关,翁源','114.130342','24.350347',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2335,486929,2,486129,'440232000000','乳源瑶族自治县','广东,韶关,乳源','113.275883','24.776078',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2336,487058,2,486129,'440233000000','新丰县','广东,韶关,新丰','114.206867','24.059760',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2337,487223,2,486129,'440281000000','乐昌市','广东,韶关,乐昌','113.347519','25.130136',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2338,487468,2,486129,'440282000000','南雄市','广东,韶关,南雄','114.311982','25.117753',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2339,487722,2,487721,'440301000000','市辖区','广东,深圳','114.057868','22.543099',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2340,487723,2,487721,'440303000000','罗湖区','广东,深圳,罗湖','114.131764','22.548171',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2341,487849,2,487721,'440304000000','福田区','广东,深圳,福田','114.055036','22.521530',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2342,487977,2,487721,'440305000000','南山区','广东,深圳,南山','113.930476','22.533013',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2343,488090,2,487721,'440306000000','宝安区','广东,深圳,宝安','113.884020','22.555259',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2344,488375,2,487721,'440307000000','龙岗区','广东,深圳,龙岗','114.246899','22.720968',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2345,488558,2,487721,'440308000000','盐田区','广东,深圳,盐田','114.236875','22.556499',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2346,488590,2,488589,'440401000000','市辖区','广东,珠海','113.576726','22.270715',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2347,488591,2,488589,'440402000000','香洲区','广东,珠海,香洲','113.543785','22.265811',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2348,488768,2,488589,'440403000000','斗门区','广东,珠海,斗门','113.296467','22.209200',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2349,488905,2,488589,'440404000000','金湾区','广东,珠海,金湾','113.363393','22.146874',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2350,488955,2,488954,'440501000000','市辖区','广东,汕头','116.681972','23.354091',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2351,488956,2,488954,'440507000000','龙湖区','广东,汕头,龙湖','116.716534','23.371476',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2352,489082,2,488954,'440511000000','金平区','广东,汕头,金平','116.703426','23.365613',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2353,489270,2,488954,'440512000000','濠江区','广东,汕头,濠江','116.726973','23.286079',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2354,489338,2,488954,'440513000000','潮阳区','广东,汕头,潮阳','116.601515','23.264936',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2355,489624,2,488954,'440514000000','潮南区','广东,汕头,潮南','116.433017','23.250425',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2356,489868,2,488954,'440515000000','澄海区','广东,汕头,澄海','116.756092','23.465960',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2357,490064,2,488954,'440523000000','南澳县','广东,汕头,南澳','117.023374','23.421724',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2358,490107,2,490106,'440601000000','市辖区','广东,佛山','113.121416','23.021548',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2359,490108,2,490106,'440604000000','禅城区','广东,佛山,禅城','113.122440','23.009505',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2360,490257,2,490106,'440605000000','南海区','广东,佛山,南海','113.143441','23.028956',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2361,490531,2,490106,'440606000000','顺德区','广东,佛山,顺德','113.293359','22.805240',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2362,490746,2,490106,'440607000000','三水区','广东,佛山,三水','112.896668','23.156065',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2363,490834,2,490106,'440608000000','高明区','广东,佛山,高明','112.892578','22.900182',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2364,490920,2,490919,'440701000000','市辖区','广东,江门','113.081901','22.578738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2365,490921,2,490919,'440703000000','蓬江区','广东,江门,蓬江','113.078521','22.595149',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2366,491070,2,490919,'440704000000','江海区','广东,江门,江海','113.111612','22.560474',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2367,491136,2,490919,'440705000000','新会区','广东,江门,新会','113.034187','22.458300',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2368,491380,2,490919,'440781000000','台山市','广东,江门,台山','112.794065','22.251924',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2369,491711,2,490919,'440783000000','开平市','广东,江门,开平','112.698545','22.376395',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2370,492000,2,490919,'440784000000','鹤山市','广东,江门,鹤山','112.964446','22.765392',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2371,492153,2,490919,'440785000000','恩平市','广东,江门,恩平','112.305145','22.183206',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2372,492342,2,492341,'440801000000','市辖区','广东,湛江','110.359377','21.270707',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2373,492343,2,492341,'440802000000','赤坎区','广东,湛江,赤坎','110.365900','21.266119',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2374,492393,2,492341,'440803000000','霞山区','广东,湛江,霞山','110.398070','21.191720',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2375,492484,2,492341,'440804000000','坡头区','广东,湛江,坡头','110.455332','21.244721',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2376,492563,2,492341,'440811000000','麻章区','广东,湛江,麻章','110.334387','21.263443',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2377,492716,2,492341,'440823000000','遂溪县','广东,湛江,遂溪','110.250124','21.377246',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2378,493015,2,492341,'440825000000','徐闻县','广东,湛江,徐闻','110.176750','20.325489',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2379,493241,2,492341,'440881000000','廉江市','广东,湛江,廉江','110.286209','21.609700',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2380,493663,2,492341,'440882000000','雷州市','广东,湛江,雷州','110.096749','20.914278',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2381,494182,2,492341,'440883000000','吴川市','广东,湛江,吴川','110.778411','21.441808',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2382,494395,2,494394,'440901000000','市辖区','广东,茂名','110.925456','21.662999',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2383,494396,2,494394,'440902000000','茂南区','广东,茂名,茂南','110.918026','21.641337',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2384,494629,2,494394,'440904000000','电白区','广东,茂名,电白','111.013556','21.514164',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2385,495088,2,494394,'440981000000','高州市','广东,茂名,高州','110.853302','21.917982',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2386,495611,2,494394,'440982000000','化州市','广东,茂名,化州','110.639569','21.664044',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2387,496016,2,494394,'440983000000','信宜市','广东,茂名,信宜','110.947044','22.354385',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2388,496439,2,496438,'441201000000','市辖区','广东,肇庆','112.465091','23.047191',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2389,496440,2,496438,'441202000000','端州区','广东,肇庆,端州','112.484848','23.052101',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2390,496505,2,496438,'441203000000','鼎湖区','广东,肇庆,鼎湖','112.567588','23.158447',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2391,496594,2,496438,'441204000000','高要区','广东,肇庆,高要','112.457771','23.025668',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2392,496964,2,496438,'441223000000','广宁县','广东,肇庆,广宁','112.440690','23.634676',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2393,497158,2,496438,'441224000000','怀集县','广东,肇庆,怀集','112.184652','23.911899',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2394,497503,2,496438,'441225000000','封开县','广东,肇庆,封开','111.512343','23.424033',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2395,497719,2,496438,'441226000000','德庆县','广东,肇庆,德庆','111.785937','23.143722',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2396,497926,2,496438,'441284000000','四会市','广东,肇庆,四会','112.733773','23.326504',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2397,498105,2,498104,'441301000000','市辖区','广东,惠州','114.416196','23.111847',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2398,498106,2,498104,'441302000000','惠城区','广东,惠州,惠城','114.382541','23.084122',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2399,498397,2,498104,'441303000000','惠阳区','广东,惠州,惠阳','114.456696','22.788734',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2400,498578,2,498104,'441322000000','博罗县','广东,惠州,博罗','114.289496','23.172899',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2401,498978,2,498104,'441323000000','惠东县','广东,惠州,惠东','114.720079','22.984975',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2402,499292,2,498104,'441324000000','龙门县','广东,惠州,龙门','114.254863','23.727737',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2403,499490,2,499489,'441401000000','市辖区','广东,梅州','116.122238','24.288615',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2404,499491,2,499489,'441402000000','梅江区','广东,梅州,梅江','116.116616','24.310384',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2405,499625,2,499489,'441403000000','梅县区','广东,梅州,梅县','116.082183','24.265312',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2406,500036,2,499489,'441422000000','大埔县','广东,梅州,大埔','116.695195','24.347783',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2407,500312,2,499489,'441423000000','丰顺县','广东,梅州,丰顺','116.182299','23.739526',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2408,500611,2,499489,'441424000000','五华县','广东,梅州,五华','115.775788','23.932409',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2409,501074,2,499489,'441426000000','平远县','广东,梅州,平远','115.891638','24.567262',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2410,501230,2,499489,'441427000000','蕉岭县','广东,梅州,蕉岭','116.171356','24.658700',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2411,501351,2,499489,'441481000000','兴宁市','广东,梅州,兴宁','115.731110','24.136630',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2412,501868,2,501867,'441501000000','市辖区','广东,汕尾','115.375278','22.786211',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2413,501869,2,501867,'441502000000','城区','广东,汕尾,城区','115.365029','22.778699',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2414,502002,2,501867,'441521000000','海丰县','广东,汕尾,海丰','115.323436','22.966586',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2415,502303,2,501867,'441523000000','陆河县','广东,汕尾,陆河','115.660143','23.301617',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2416,502439,2,501867,'441581000000','陆丰市','广东,汕尾,陆丰','115.652260','22.917576',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2417,502829,2,502828,'441601000000','市辖区','广东,河源','114.700447','23.743538',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2418,502830,2,502828,'441602000000','源城区','广东,河源,源城','114.702517','23.733969',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2419,502907,2,502828,'441621000000','紫金县','广东,河源,紫金','115.184061','23.635271',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2420,503226,2,502828,'441622000000','龙川县','广东,河源,龙川','115.259872','24.100066',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2421,503608,2,502828,'441623000000','连平县','广东,河源,连平','114.488714','24.369588',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2422,503797,2,502828,'441624000000','和平县','广东,河源,和平','114.938684','24.442180',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2423,504060,2,502828,'441625000000','东源县','广东,河源,东源','114.746380','23.788393',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2424,504367,2,504366,'441701000000','市辖区','广东,阳江','111.982232','21.857958',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2425,504368,2,504366,'441702000000','江城区','广东,阳江,江城','111.955059','21.861787',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2426,504549,2,504366,'441704000000','阳东区','广东,阳江,阳东','112.006338','21.868358',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2427,504749,2,504366,'441721000000','阳西县','广东,阳江,阳西','111.617849','21.752396',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2428,504911,2,504366,'441781000000','阳春市','广东,阳江,阳春','111.791539','22.170438',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2429,505299,2,505298,'441801000000','市辖区','广东,清远','113.056031','23.681763',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2430,505300,2,505298,'441802000000','清城区','广东,清远,清城','113.062692','23.697899',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2431,505466,2,505298,'441803000000','清新区','广东,清远,清新','113.017749','23.734673',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2432,505685,2,505298,'441821000000','佛冈县','广东,清远,佛冈','113.531607','23.879192',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2433,505782,2,505298,'441823000000','阳山县','广东,清远,阳山','112.641363','24.465359',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2434,505963,2,505298,'441825000000','连山壮族瑶族自治县','广东,清远,连山','112.093617','24.570491',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2435,506027,2,505298,'441826000000','连南瑶族自治县','广东,清远,连南','112.287012','24.726017',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2436,506106,2,505298,'441881000000','英德市','广东,清远,英德','113.402376','24.205024',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2437,506430,2,505298,'441882000000','连州市','广东,清远,连州','112.377361','24.780966',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2438,506617,2,506616,'441900003000','东城街道办事处','广东,东莞,东城','113.754635','23.002896',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2439,506643,2,506616,'441900004000','南城街道办事处','广东,东莞,南城','113.753133','22.987560',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2440,506662,2,506616,'441900005000','万江街道办事处','广东,东莞,万江','113.740409','23.052146',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2441,506691,2,506616,'441900006000','莞城街道办事处','广东,东莞,莞城','113.751050','23.053413',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2442,506700,2,506616,'441900101000','石碣镇','广东,东莞,石碣','113.802109','23.094111',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2443,506716,2,506616,'441900102000','石龙镇','广东,东莞,石龙','113.751765','23.020536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2444,506727,2,506616,'441900103000','茶山镇','广东,东莞,茶山','113.751765','23.020536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2445,506746,2,506616,'441900104000','石排镇','广东,东莞,石排','113.751765','23.020536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2446,506766,2,506616,'441900105000','企石镇','广东,东莞,企石','113.751765','23.020536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2447,506787,2,506616,'441900106000','横沥镇','广东,东莞,横沥','113.751765','23.020536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2448,506805,2,506616,'441900107000','桥头镇','广东,东莞,桥头','113.751765','23.020536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2449,506823,2,506616,'441900108000','谢岗镇','广东,东莞,谢岗','114.141456','22.972083',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2450,506836,2,506616,'441900109000','东坑镇','广东,东莞,东坑','113.948089','22.989033',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2451,506853,2,506616,'441900110000','常平镇','广东,东莞,常平','113.992186','22.975601',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2452,506887,2,506616,'441900111000','寮步镇','广东,东莞,寮步','113.818996','23.025373',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2453,506918,2,506616,'441900112000','樟木头镇','广东,东莞,樟木头镇','114.083278','22.914909',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2454,506930,2,506616,'441900113000','大朗镇','广东,东莞,大朗','113.915820','22.915996',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2455,506959,2,506616,'441900114000','黄江镇','广东,东莞,黄江','113.996039','22.877840',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2456,506967,2,506616,'441900115000','清溪镇','广东,东莞,清溪','114.164330','22.844557',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2457,506990,2,506616,'441900116000','塘厦镇','广东,东莞,塘厦','113.774481','22.791051',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2458,507015,2,506616,'441900117000','凤岗镇','广东,东莞,凤岗','113.751765','23.020536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2459,507028,2,506616,'441900118000','大岭山镇','广东,东莞,大岭山镇','113.842223','22.899965',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2460,507052,2,506616,'441900119000','长安镇','广东,东莞,长安','113.794060','22.803590',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2461,507066,2,506616,'441900121000','虎门镇','广东,东莞,虎门','113.672560','22.814835',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2462,507099,2,506616,'441900122000','厚街镇','广东,东莞,厚街','113.751765','23.020536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2463,507124,2,506616,'441900123000','沙田镇','广东,东莞,沙田','113.751765','23.020536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2464,507143,2,506616,'441900124000','道滘镇','广东,东莞,道滘','113.751765','23.020536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2465,507158,2,506616,'441900125000','洪梅镇','广东,东莞,洪梅','113.608903','22.994717',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2466,507169,2,506616,'441900126000','麻涌镇','广东,东莞,麻涌','113.751765','23.020536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2467,507185,2,506616,'441900127000','望牛墩镇','广东,东莞,望牛墩镇','113.656243','23.055331',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2468,507208,2,506616,'441900128000','中堂镇','广东,东莞,中堂','113.751765','23.020536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2469,507229,2,506616,'441900129000','高埗镇','广东,东莞,高埗','113.722126','23.078713',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2470,507249,2,506616,'441900401000','松山湖管委会','广东,东莞,松山湖','113.909208','22.960541',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2471,507251,2,506616,'441900402000','虎门港管委会','广东,东莞,虎门港','113.583070','22.864175',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2472,507253,2,506616,'441900403000','东莞生态园','广东,东莞,东莞生态园','113.927452','23.063210',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2473,507256,2,507255,'442000001000','石岐区街道办事处','广东,中山,石岐区','113.384930','22.532046',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2474,507276,2,507255,'442000002000','东区街道办事处','广东,中山,东区','113.392782','22.517645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2475,507287,2,507255,'442000003000','火炬开发区街道办事处','广东,中山,火炬开发区','113.480528','22.566086',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2476,507295,2,507255,'442000004000','西区街道办事处','广东,中山,西区','113.392782','22.517645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2477,507305,2,507255,'442000005000','南区街道办事处','广东,中山,南区','113.358509','22.472530',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2478,507310,2,507255,'442000006000','五桂山街道办事处','广东,中山,五桂山','113.463397','22.421549',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2479,507316,2,507255,'442000100000','小榄镇','广东,中山,小榄','113.250897','22.672099',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2480,507332,2,507255,'442000101000','黄圃镇','广东,中山,黄圃','113.335242','22.709897',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2481,507349,2,507255,'442000102000','民众镇','广东,中山,民众','113.392782','22.517645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2482,507369,2,507255,'442000103000','东凤镇','广东,中山,东凤','113.392782','22.517645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2483,507384,2,507255,'442000104000','东升镇','广东,中山,东升','113.294393','22.616908',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2484,507399,2,507255,'442000105000','古镇镇','广东,中山,古镇','113.190869','22.613406',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2485,507413,2,507255,'442000106000','沙溪镇','广东,中山,沙溪','113.392782','22.517645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2486,507430,2,507255,'442000107000','坦洲镇','广东,中山,坦洲','113.460373','22.265182',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2487,507445,2,507255,'442000108000','港口镇','广东,中山,港口','113.247148','22.683616',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2488,507455,2,507255,'442000109000','三角镇','广东,中山,三角','113.422371','22.684688',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2489,507464,2,507255,'442000110000','横栏镇','广东,中山,横栏','113.265845','22.523201',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2490,507476,2,507255,'442000111000','南头镇','广东,中山,南头','113.392782','22.517645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2491,507483,2,507255,'442000112000','阜沙镇','广东,中山,阜沙','113.392782','22.517645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2492,507493,2,507255,'442000113000','南朗镇','广东,中山,南朗','113.392782','22.517645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2493,507509,2,507255,'442000114000','三乡镇','广东,中山,三乡','113.441614','22.357754',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2494,507526,2,507255,'442000115000','板芙镇','广东,中山,板芙','113.392782','22.517645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2495,507538,2,507255,'442000116000','大涌镇','广东,中山,大涌','113.392782','22.517645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2496,507550,2,507255,'442000117000','神湾镇','广东,中山,神湾','113.392782','22.517645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2497,507558,2,507557,'445101000000','市辖区','广东,潮州','116.622603','23.656950',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2498,507559,2,507557,'445102000000','湘桥区','广东,潮州,湘桥','116.628632','23.674536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2499,507748,2,507557,'445103000000','潮安区','广东,潮州,潮安','116.678204','23.462613',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2500,508223,2,507557,'445122000000','饶平县','广东,潮州,饶平','117.003900','23.663824',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2501,508649,2,508648,'445201000000','市辖区','广东,揭阳','116.372831','23.549993',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2502,508650,2,508648,'445202000000','榕城区','广东,揭阳,榕城','116.367026','23.525153',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2503,508863,2,508648,'445203000000','揭东区','广东,揭阳,揭东','116.412015','23.566127',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2504,509101,2,508648,'445222000000','揭西县','广东,揭阳,揭西','115.841838','23.431294',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2505,509449,2,508648,'445224000000','惠来县','广东,揭阳,惠来','116.295150','23.033267',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2506,509796,2,508648,'445281000000','普宁市','广东,揭阳,普宁','116.166004','23.297642',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2507,510409,2,510408,'445301000000','市辖区','广东,云浮','112.044491','22.915094',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2508,510410,2,510408,'445302000000','云城区','广东,云浮,云城','112.043857','22.928115',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2509,510536,2,510408,'445303000000','云安区','广东,云浮,云安','112.003209','23.071020',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2510,510660,2,510408,'445321000000','新兴县','广东,云浮,新兴','112.225335','22.695690',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2511,510878,2,510408,'445322000000','郁南县','广东,云浮,郁南','111.535249','23.234627',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2512,511102,2,510408,'445381000000','罗定市','广东,云浮,罗定','111.570010','22.768595',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2513,511464,2,511463,'450101000000','市辖区','广西,南宁','108.366543','22.817002',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2514,511465,2,511463,'450102000000','兴宁区','广西,南宁,兴宁','108.368871','22.854021',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2515,511545,2,511463,'450103000000','青秀区','广西,南宁,青秀','108.494024','22.785879',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2516,511662,2,511463,'450105000000','江南区','广西,南宁,江南','108.273158','22.781632',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2517,511790,2,511463,'450107000000','西乡塘区','广西,南宁,西乡塘','108.306886','22.832770',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2518,511960,2,511463,'450108000000','良庆区','广西,南宁,良庆','108.322102','22.759090',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2519,512044,2,511463,'450109000000','邕宁区','广西,南宁,邕宁','108.487369','22.758390',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2520,512124,2,511463,'450110000000','武鸣区','广西,南宁,武鸣','108.274712','23.158693',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2521,512381,2,511463,'450123000000','隆安县','广西,南宁,隆安','107.696153','23.166028',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2522,512530,2,511463,'450124000000','马山县','广西,南宁,马山','108.176979','23.708192',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2523,512695,2,511463,'450125000000','上林县','广西,南宁,上林','108.604921','23.431936',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2524,512838,2,511463,'450126000000','宾阳县','广西,南宁,宾阳','108.810326','23.217787',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2525,513091,2,511463,'450127000000','横县','广西,南宁,横县','109.261384','22.679932',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2526,513435,2,513434,'450201000000','市辖区','广西,柳州','109.415953','24.325502',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2527,513436,2,513434,'450202000000','城中区','广西,柳州,城中','109.410736','24.315602',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2528,513477,2,513434,'450203000000','鱼峰区','广西,柳州,鱼峰','109.452442','24.318517',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2529,513569,2,513434,'450204000000','柳南区','广西,柳州,柳南','109.385519','24.336229',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2530,513661,2,513434,'450205000000','柳北区','广西,柳州,柳北','109.402050','24.362691',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2531,513772,2,513434,'450206000000','柳江区','广西,柳州,柳江','109.326380','24.254892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2532,513938,2,513434,'450222000000','柳城县','广西,柳州,柳城','109.244730','24.651518',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2533,514091,2,513434,'450223000000','鹿寨县','广西,柳州,鹿寨','109.750638','24.472897',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2534,514219,2,513434,'450224000000','融安县','广西,柳州,融安','109.397538','25.224550',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2535,514380,2,513434,'450225000000','融水苗族自治县','广西,柳州,融水','109.256334','25.065934',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2536,514607,2,513434,'450226000000','三江侗族自治县','广西,柳州,三江','109.607675','25.783198',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2537,514791,2,514790,'450301000000','市辖区','广西,桂林','110.290194','25.273566',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2538,514792,2,514790,'450302000000','秀峰区','广西,桂林,秀峰','110.264183','25.273625',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2539,514824,2,514790,'450303000000','叠彩区','广西,桂林,叠彩','110.301723','25.314001',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2540,514864,2,514790,'450304000000','象山区','广西,桂林,象山','110.281082','25.261687',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2541,514911,2,514790,'450305000000','七星区','广西,桂林,七星','110.317826','25.252701',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2542,514964,2,514790,'450311000000','雁山区','广西,桂林,雁山','110.286690','25.101935',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2543,515012,2,514790,'450312000000','临桂区','广西,桂林,临桂','110.212463','25.238628',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2544,515195,2,514790,'450321000000','阳朔县','广西,桂林,阳朔','110.496593','24.778481',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2545,515319,2,514790,'450323000000','灵川县','广西,桂林,灵川','110.325636','25.409747',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2546,515481,2,514790,'450324000000','全州县','广西,桂林,全州','111.072926','25.928617',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2547,515784,2,514790,'450325000000','兴安县','广西,桂林,兴安','110.671670','25.611705',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2548,515920,2,514790,'450326000000','永福县','广西,桂林,永福','109.983076','24.979856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2549,516029,2,514790,'450327000000','灌阳县','广西,桂林,灌阳','111.160851','25.489383',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2550,516180,2,514790,'450328000000','龙胜各族自治县','广西,桂林,龙胜各族','110.011238','25.797931',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2551,516317,2,514790,'450329000000','资源县','广西,桂林,资源','110.652700','26.042443',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2552,516399,2,514790,'450330000000','平乐县','广西,桂林,平乐','110.643305','24.633362',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2553,516563,2,514790,'450331000000','荔浦县','广西,桂林,荔浦','110.395287','24.487824',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2554,516721,2,514790,'450332000000','恭城瑶族自治县','广西,桂林,恭城','110.830193','24.822522',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2555,516859,2,516858,'450401000000','市辖区','广西,梧州','111.279115','23.476962',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2556,516860,2,516858,'450403000000','万秀区','广西,梧州,万秀','111.320542','23.472962',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2557,516945,2,516858,'450405000000','长洲区','广西,梧州,长洲','111.274777','23.485695',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2558,516991,2,516858,'450406000000','龙圩区','广西,梧州,龙圩','111.246035','23.409960',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2559,517075,2,516858,'450421000000','苍梧县','广西,梧州,苍梧','111.544008','23.845097',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2560,517230,2,516858,'450422000000','藤县','广西,梧州,藤县','110.914849','23.374984',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2561,517542,2,516858,'450423000000','蒙山县','广西,梧州,蒙山','110.525003','24.193570',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2562,517636,2,516858,'450481000000','岑溪市','广西,梧州,岑溪','110.994913','22.918350',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2563,517934,2,517933,'450501000000','市辖区','广西,北海','109.119927','21.481254',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2564,517935,2,517933,'450502000000','海城区','广西,北海,海城','109.117210','21.475005',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2565,518010,2,517933,'450503000000','银海区','广西,北海,银海','109.139990','21.449219',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2566,518067,2,517933,'450512000000','铁山港区','广西,北海,铁山港','109.421581','21.529128',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2567,518115,2,517933,'450521000000','合浦县','广西,北海,合浦','109.207336','21.660936',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2568,518408,2,518407,'450601000000','市辖区','广西,防城港','108.353846','21.686860',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2569,518409,2,518407,'450602000000','港口区','广西,防城港,港口','108.380144','21.643384',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2570,518455,2,518407,'450603000000','防城区','广西,防城港,防城','108.353499','21.769212',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2571,518641,2,518407,'450621000000','上思县','广西,防城港,上思','107.983626','22.153672',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2572,518762,2,518407,'450681000000','东兴市','广西,防城港,东兴','107.971826','21.547822',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2573,518809,2,518808,'450701000000','市辖区','广西,钦州','108.654146','21.979933',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2574,518810,2,518808,'450702000000','钦南区','广西,钦州,钦南','108.657210','21.938860',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2575,519003,2,518808,'450703000000','钦北区','广西,钦州,钦北','108.449110','22.132761',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2576,519201,2,518808,'450721000000','灵山县','广西,钦州,灵山','109.291007','22.416537',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2577,519637,2,518808,'450722000000','浦北县','广西,钦州,浦北','109.556953','22.271651',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2578,519930,2,519929,'450801000000','市辖区','广西,贵港','109.598926','23.111530',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2579,519931,2,519929,'450802000000','港北区','广西,贵港,港北','109.572240','23.111531',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2580,520063,2,519929,'450803000000','港南区','广西,贵港,港南','109.599557','23.075573',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2581,520240,2,519929,'450804000000','覃塘区','广西,贵港,覃塘','109.452662','23.127149',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2582,520397,2,519929,'450821000000','平南县','广西,贵港,平南','110.392168','23.539127',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2583,520707,2,519929,'450881000000','桂平市','广西,贵港,桂平','110.079379','23.394326',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2584,521167,2,521166,'450901000000','市辖区','广西,玉林','110.164756','22.636379',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2585,521168,2,521166,'450902000000','玉州区','广西,玉林,玉州','110.151147','22.628102',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2586,521286,2,521166,'450903000000','福绵区','广西,玉林,福绵','110.059439','22.585557',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2587,521409,2,521166,'450921000000','容县','广西,玉林,容县','110.557874','22.857823',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2588,521652,2,521166,'450922000000','陆川县','广西,玉林,陆川','110.264052','22.321048',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2589,521832,2,521166,'450923000000','博白县','广西,玉林,博白','109.975985','22.273048',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2590,522220,2,521166,'450924000000','兴业县','广西,玉林,兴业','109.875304','22.736421',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2591,522448,2,521166,'450981000000','北流市','广西,玉林,北流','110.354215','22.708311',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2592,522787,2,522786,'451001000000','市辖区','广西,百色','106.618201','23.902333',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2593,522788,2,522786,'451002000000','右江区','广西,百色,右江','106.618645','23.901383',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2594,522918,2,522786,'451021000000','田阳县','广西,百色,田阳','106.915418','23.735682',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2595,523086,2,522786,'451022000000','田东县','广西,百色,田东','107.126081','23.597194',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2596,523265,2,522786,'451023000000','平果县','广西,百色,平果','107.589810','23.329376',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2597,523461,2,522786,'451024000000','德保县','广西,百色,德保','106.615374','23.323450',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2598,523661,2,522786,'451026000000','那坡县','广西,百色,那坡','105.832530','23.387441',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2599,523801,2,522786,'451027000000','凌云县','广西,百色,凌云','106.561310','24.347557',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2600,523920,2,522786,'451028000000','乐业县','广西,百色,乐业','106.556519','24.776827',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2601,524017,2,522786,'451029000000','田林县','广西,百色,田林','106.228538','24.294488',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2602,524200,2,522786,'451030000000','西林县','广西,百色,西林','105.093837','24.489810',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2603,524306,2,522786,'451031000000','隆林各族自治县','广西,百色,隆林各族','105.344040','24.770896',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2604,524502,2,522786,'451081000000','靖西市','广西,百色,靖西','106.417549','23.134766',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2605,524815,2,524814,'451101000000','市辖区','广西,贺州','111.566694','24.403582',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2606,524816,2,524814,'451102000000','八步区','广西,贺州,八步','111.552096','24.411805',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2607,525035,2,524814,'451103000000','平桂区','广西,贺州,平桂','111.566694','24.403582',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2608,525169,2,524814,'451121000000','昭平县','广西,贺州,昭平','110.811287','24.169480',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2609,525341,2,524814,'451122000000','钟山县','广西,贺州,钟山','111.303111','24.526022',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2610,525470,2,524814,'451123000000','富川瑶族自治县','广西,贺州,富川','111.277389','24.814444',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2611,525639,2,525638,'451201000000','市辖区','广西,河池','108.085261','24.692931',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2612,525640,2,525638,'451202000000','金城江区','广西,河池,金城江','108.037277','24.689703',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2613,525798,2,525638,'451221000000','南丹县','广西,河池,南丹','107.540722','24.974486',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2614,525961,2,525638,'451222000000','天峨县','广西,河池,天峨','107.173802','24.999108',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2615,526066,2,525638,'451223000000','凤山县','广西,河池,凤山','107.042191','24.546876',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2616,526174,2,525638,'451224000000','东兰县','广西,河池,东兰','107.374294','24.510842',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2617,526338,2,525638,'451225000000','罗城仫佬族自治县','广西,河池,罗城','108.904707','24.777413',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2618,526493,2,525638,'451226000000','环江毛南族自治县','广西,河池,环江','108.258028','24.825664',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2619,526654,2,525638,'451227000000','巴马瑶族自治县','广西,河池,巴马','107.258588','24.142299',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2620,526772,2,525638,'451228000000','都安瑶族自治县','广西,河池,都安','108.128403','23.919338',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2621,527041,2,525638,'451229000000','大化瑶族自治县','广西,河池,大化','108.085261','24.692931',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2622,527216,2,525638,'451281000000','宜州市','广西,河池,宜州','108.636415','24.485214',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2623,527444,2,527443,'451301000000','市辖区','广西,来宾','109.221465','23.750306',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2624,527445,2,527443,'451302000000','兴宾区','广西,来宾,兴宾','109.230541','23.732926',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2625,527762,2,527443,'451321000000','忻城县','广西,来宾,忻城','108.665666','24.066235',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2626,527905,2,527443,'451322000000','象州县','广西,来宾,象州','109.683985','23.958528',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2627,528042,2,527443,'451323000000','武宣县','广西,来宾,武宣','109.663207','23.594110',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2628,528205,2,527443,'451324000000','金秀瑶族自治县','广西,来宾,金秀','110.189462','24.130374',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2629,528299,2,527443,'451381000000','合山市','广西,来宾,合山','108.886082','23.806536',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2630,528340,2,528339,'451401000000','市辖区','广西,崇左','107.364711','22.376532',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2631,528341,2,528339,'451402000000','江州区','广西,崇左,江州','107.353437','22.405325',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2632,528494,2,528339,'451421000000','扶绥县','广西,崇左,扶绥','107.904187','22.635013',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2633,528647,2,528339,'451422000000','宁明县','广西,崇左,宁明','107.076457','22.140192',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2634,528845,2,528339,'451423000000','龙州县','广西,崇左,龙州','106.854451','22.342797',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2635,528986,2,528339,'451424000000','大新县','广西,崇左,大新','107.200654','22.829288',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2636,529159,2,528339,'451425000000','天等县','广西,崇左,天等','107.143433','23.081394',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2637,529297,2,528339,'451481000000','凭祥市','广西,崇左,凭祥','106.766293','22.094485',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2638,529346,2,529345,'460101000000','市辖区','海南,海口','110.198293','20.044001',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2639,529347,2,529345,'460105000000','秀英区','海南,海口,秀英','110.293561','20.007969',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2640,529451,2,529345,'460106000000','龙华区','海南,海口,龙华','110.328492','20.031007',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2641,529589,2,529345,'460107000000','琼山区','海南,海口,琼山','110.353972','20.003170',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2642,529720,2,529345,'460108000000','美兰区','海南,海口,美兰','110.366357','20.029083',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2643,529879,2,529878,'460201000000','市辖区','海南,三亚','109.511909','18.252847',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2644,529910,2,529878,'460202000000','海棠区','海南,三亚,海棠','109.760778','18.407516',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2645,529934,2,529878,'460203000000','吉阳区','海南,三亚,吉阳','109.578330','18.281397',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2646,529973,2,529878,'460204000000','天涯区','海南,三亚,天涯','109.506357','18.247340',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2647,530027,2,529878,'460205000000','崖州区','海南,三亚,崖州','109.174313','18.352212',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2648,530061,2,530060,'460321000000','西沙群岛','海南,三沙,西沙群岛','112.338695','16.831839',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2649,530064,2,530060,'460322000000','南沙群岛','海南,三沙,南沙群岛','112.338695','16.831839',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2650,530067,2,530060,'460323000000','中沙群岛的岛礁及其海域','海南,三沙,中沙群岛的岛礁及其海域','112.338695','16.831839',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2651,530071,2,530070,'460400100000','那大镇','海南,儋州,那大','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2652,530112,2,530070,'460400101000','和庆镇','海南,儋州,和庆','109.640856','19.525399',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2653,530126,2,530070,'460400102000','南丰镇','海南,儋州,南丰','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2654,530139,2,530070,'460400103000','大成镇','海南,儋州,大成','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2655,530162,2,530070,'460400104000','雅星镇','海南,儋州,雅星','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2656,530188,2,530070,'460400105000','兰洋镇','海南,儋州,兰洋','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2657,530207,2,530070,'460400106000','光村镇','海南,儋州,光村','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2658,530220,2,530070,'460400107000','木棠镇','海南,儋州,木棠','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2659,530246,2,530070,'460400108000','海头镇','海南,儋州,海头','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2660,530261,2,530070,'460400109000','峨蔓镇','海南,儋州,峨蔓','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2661,530275,2,530070,'460400110000','三都镇','海南,儋州,三都','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2662,530285,2,530070,'460400111000','王五镇','海南,儋州,王五','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2663,530295,2,530070,'460400112000','白马井镇','海南,儋州,白马井镇','109.218734','19.696407',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2664,530318,2,530070,'460400113000','中和镇','海南,儋州,中和','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2665,530331,2,530070,'460400114000','排浦镇','海南,儋州,排浦','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2666,530340,2,530070,'460400115000','东成镇','海南,儋州,东成','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2667,530361,2,530070,'460400116000','新州镇','海南,儋州,新州','110.349228','20.017377',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2668,530394,2,530070,'460400400000','国营西培农场','海南,儋州,国营西培农场','109.455554','19.476422',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2669,530410,2,530070,'460400404000','国营西联农场','海南,儋州,国营西联农场','109.539074','19.673015',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2670,530431,2,530070,'460400405000','国营蓝洋农场','海南,儋州,国营蓝洋农场','109.670723','19.458984',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2671,530437,2,530070,'460400407000','国营八一农场','海南,儋州,国营八一农场','109.364519','19.413460',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2672,530447,2,530070,'460400499000','洋浦经济开发区','海南,儋州,洋浦经济开发','109.202064','19.736941',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2673,530466,2,530070,'460400500000','华南热作学院','海南,儋州,华南热作学院','109.494073','19.505382',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2674,530469,2,530468,'469001000000','五指山市','海南,五指山','109.516922','18.775146',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2675,530552,2,530468,'469002000000','琼海市','海南,琼海','110.474579','19.259140',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2676,530809,2,530468,'469005000000','文昌市','海南,文昌','110.797714','19.543423',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2677,531148,2,530468,'469006000000','万宁市','海南,万宁','110.391075','18.795143',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2678,531426,2,530468,'469007000000','东方市','海南,东方','108.651817','19.095350',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2679,531647,2,530468,'469021000000','定安县','海南,定安','110.358891','19.681434',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2680,531811,2,530468,'469022000000','屯昌县','海南,屯昌','110.103415','19.351766',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2681,531971,2,530468,'469023000000','澄迈县','海南,澄迈','110.006755','19.738521',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2682,532200,2,530468,'469024000000','临高县','海南,临高','109.690508','19.912026',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2683,532409,2,530468,'469025000000','白沙黎族自治县','海南,白沙','109.451484','19.224823',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2684,532558,2,530468,'469026000000','昌江黎族自治县','海南,昌江','109.055724','19.298062',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2685,532672,2,530468,'469027000000','乐东黎族自治县','海南,乐东','109.173055','18.750260',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2686,532906,2,530468,'469028000000','陵水黎族自治县','海南,陵水','110.037504','18.506048',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2687,533053,2,530468,'469029000000','保亭黎族苗族自治县','海南,保亭','109.702590','18.639130',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2688,533161,2,530468,'469030000000','琼中黎族苗族自治县','海南,琼中','109.838389','19.033369',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2689,533330,2,533329,'500101000000','万州区','重庆,万州','108.408661','30.807667',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2690,534019,2,533329,'500102000000','涪陵区','重庆,涪陵','107.389298','29.703113',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2691,534468,2,533329,'500103000000','渝中区','重庆,渝中','106.568892','29.552750',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2692,534558,2,533329,'500104000000','大渡口区','重庆,大渡口','106.482347','29.484527',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2693,534656,2,533329,'500105000000','江北区','重庆,江北','106.574271','29.606703',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2694,534799,2,533329,'500106000000','沙坪坝区','重庆,沙坪坝','106.456878','29.541145',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2695,535021,2,533329,'500107000000','九龙坡区','重庆,九龙坡','106.510676','29.502272',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2696,535262,2,533329,'500108000000','南岸区','重庆,南岸','106.644428','29.500297',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2697,535428,2,533329,'500109000000','北碚区','重庆,北碚','106.395612','29.805108',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2698,535629,2,533329,'500110000000','綦江区','重庆,綦江','106.651362','29.028067',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2699,536131,2,533329,'500111000000','大足区','重庆,大足','105.721733','29.707032',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2700,536468,2,533329,'500112000000','渝北区','重庆,渝北','106.631187','29.718143',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2701,536890,2,533329,'500113000000','巴南区','重庆,巴南','106.540257','29.402408',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2702,537212,2,533329,'500114000000','黔江区','重庆,黔江','108.770678','29.533610',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2703,537461,2,533329,'500115000000','长寿区','重庆,长寿','107.081283','29.857996',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2704,537745,2,533329,'500116000000','江津区','重庆,江津','106.259281','29.290069',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2705,538050,2,533329,'500117000000','合川区','重庆,合川','106.276130','29.972084',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2706,538493,2,533329,'500118000000','永川区','重庆,永川','105.927376','29.356117',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2707,538778,2,533329,'500119000000','南川区','重庆,南川','107.099266','29.157891',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2708,539057,2,533329,'500120000000','璧山区','重庆,璧山','106.227305','29.592024',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2709,539260,2,533329,'500151000000','铜梁区','重庆,铜梁','106.056404','29.844811',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2710,539615,2,533329,'500152000000','潼南区','重庆,潼南','105.840556','30.191013',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2711,539942,2,533329,'500153000000','荣昌区','重庆,荣昌','105.594623','29.405002',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2712,540131,2,533329,'500154000000','开州区','重庆,开州','106.551556','29.563009',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2713,540701,2,540700,'500228000000','梁平县','重庆,梁平','107.769312','30.654203',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2714,541080,2,540700,'500229000000','城口县','重庆,城口','108.664214','31.947633',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2715,541310,2,540700,'500230000000','丰都县','重庆,丰都','107.730895','29.863500',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2716,541671,2,540700,'500231000000','垫江县','重庆,垫江','107.333390','30.327717',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2717,541999,2,540700,'500232000000','武隆县','重庆,武隆','107.760025','29.325601',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2718,542236,2,540700,'500233000000','忠县','重庆,忠县','108.039002','30.299560',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2719,542631,2,540700,'500235000000','云阳县','重庆,云阳','108.697324','30.930613',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2720,543152,2,540700,'500236000000','奉节县','重庆,奉节','109.463987','31.018498',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2721,543575,2,540700,'500237000000','巫山县','重庆,巫山','109.879153','31.074834',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2722,543943,2,540700,'500238000000','巫溪县','重庆,巫溪','109.570062','31.398604',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2723,544307,2,540700,'500240000000','石柱土家族自治县','重庆,石柱','108.114069','29.999285',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2724,544583,2,540700,'500241000000','秀山土家族苗族自治县','重庆,秀山','109.007094','28.447997',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2725,544878,2,540700,'500242000000','酉阳土家族苗族自治县','重庆,酉阳','108.767747','28.841244',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2726,545196,2,540700,'500243000000','彭水苗族土家族自治县','重庆,彭水','108.165538','29.293902',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2727,545534,2,545533,'510101000000','市辖区','四川,成都','104.066541','30.572269',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2728,545535,2,545533,'510104000000','锦江区','四川,成都,锦江','104.080989','30.657689',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2729,545669,2,545533,'510105000000','青羊区','四川,成都,青羊','104.062499','30.674406',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2730,545763,2,545533,'510106000000','金牛区','四川,成都,金牛','104.052236','30.691359',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2731,545889,2,545533,'510107000000','武侯区','四川,成都,武侯','104.043390','30.641982',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2732,546035,2,545533,'510108000000','成华区','四川,成都,成华','104.101255','30.660122',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2733,546151,2,545533,'510112000000','龙泉驿区','四川,成都,龙泉驿','104.274632','30.556507',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2734,546306,2,545533,'510113000000','青白江区','四川,成都,青白江','104.250877','30.878681',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2735,546441,2,545533,'510114000000','新都区','四川,成都,新都','104.158705','30.823499',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2736,546710,2,545533,'510115000000','温江区','四川,成都,温江','103.856646','30.682203',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2737,546835,2,545533,'510116000000','双流区','四川,成都,双流','103.923588','30.574488',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2738,547144,2,545533,'510121000000','金堂县','四川,成都,金堂','104.412005','30.862017',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2739,547398,2,545533,'510124000000','郫县','四川,成都,郫县','103.901092','30.795854',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2740,547634,2,545533,'510129000000','大邑县','四川,成都,大邑','103.511875','30.572269',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2741,547873,2,545533,'510131000000','蒲江县','四川,成都,蒲江','103.506498','30.196789',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2742,548018,2,545533,'510132000000','新津县','四川,成都,新津','103.811345','30.410222',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2743,548137,2,545533,'510181000000','都江堰市','四川,成都,都江堰','103.646912','30.988435',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2744,548412,2,545533,'510182000000','彭州市','四川,成都,彭州','103.958013','30.990165',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2745,548788,2,545533,'510183000000','邛崃市','四川,成都,邛崃','103.464156','30.410275',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2746,549084,2,545533,'510184000000','崇州市','四川,成都,崇州','103.673001','30.630122',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2747,549363,2,545533,'510185000000','简阳市','四川,成都,简阳','104.546774','30.410755',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2748,550276,2,550275,'510301000000','市辖区','四川,自贡','104.778442','29.339030',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2749,550277,2,550275,'510302000000','自流井区','四川,自贡,自流井','104.777191','29.337430',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2750,550413,2,550275,'510303000000','贡井区','四川,自贡,贡井','104.715117','29.345546',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2751,550609,2,550275,'510304000000','大安区','四川,自贡,大安','104.773968','29.363634',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2752,550816,2,550275,'510311000000','沿滩区','四川,自贡,沿滩','104.874073','29.272581',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2753,551023,2,550275,'510321000000','荣县','四川,自贡,荣县','104.417388','29.445410',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2754,551398,2,550275,'510322000000','富顺县','四川,自贡,富顺','104.975048','29.181430',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2755,551810,2,551809,'510401000000','市辖区','四川,攀枝花','101.718637','26.582347',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2756,551811,2,551809,'510402000000','东区','四川,攀枝花,东区','101.718637','26.582347',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2757,551891,2,551809,'510403000000','西区','四川,攀枝花,西区','101.718637','26.582347',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2758,551941,2,551809,'510411000000','仁和区','四川,攀枝花,仁和','101.738528','26.497765',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2759,552057,2,551809,'510421000000','米易县','四川,攀枝花,米易','102.110339','26.890689',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2760,552169,2,551809,'510422000000','盐边县','四川,攀枝花,盐边','101.855071','26.683213',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2761,552359,2,552358,'510501000000','市辖区','四川,泸州','105.442258','28.871810',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2762,552360,2,552358,'510502000000','江阳区','四川,泸州,江阳','105.435009','28.878818',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2763,552536,2,552358,'510503000000','纳溪区','四川,泸州,纳溪','105.371151','28.773428',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2764,552755,2,552358,'510504000000','龙马潭区','四川,泸州,龙马潭','105.437765','28.913221',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2765,552858,2,552358,'510521000000','泸县','四川,泸州,泸县','105.381893','29.151534',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2766,553181,2,552358,'510522000000','合江县','四川,泸州,合江','105.831067','28.811203',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2767,553536,2,552358,'510524000000','叙永县','四川,泸州,叙永','105.444765','28.155801',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2768,553823,2,552358,'510525000000','古蔺县','四川,泸州,古蔺','105.812602','28.038802',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2769,554143,2,554142,'510601000000','市辖区','四川,德阳','104.397894','31.126855',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2770,554144,2,554142,'510603000000','旌阳区','四川,德阳,旌阳','104.416943','31.142498',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2771,554397,2,554142,'510623000000','中江县','四川,德阳,中江','104.678749','31.033051',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2772,555280,2,554142,'510626000000','罗江县','四川,德阳,罗江','104.510249','31.317045',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2773,555418,2,554142,'510681000000','广汉市','四川,德阳,广汉','104.282331','30.976165',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2774,555660,2,554142,'510682000000','什邡市','四川,德阳,什邡','104.167501','31.126780',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2775,555848,2,554142,'510683000000','绵竹市','四川,德阳,绵竹','104.220750','31.338077',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2776,556078,2,556077,'510701000000','市辖区','四川,绵阳','104.679114','31.467450',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2777,556079,2,556077,'510703000000','涪城区','四川,绵阳,涪城','104.756944','31.455101',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2778,556357,2,556077,'510704000000','游仙区','四川,绵阳,游仙','104.766393','31.473779',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2779,556705,2,556077,'510705000000','安州区','四川,绵阳,安州','104.679114','31.467450',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2780,556985,2,556077,'510722000000','三台县','四川,绵阳,三台','105.094586','31.095979',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2781,558091,2,556077,'510723000000','盐亭县','四川,绵阳,盐亭','105.389453','31.208363',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2782,558648,2,556077,'510725000000','梓潼县','四川,绵阳,梓潼','105.170845','31.642718',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2783,559030,2,556077,'510726000000','北川羌族自治县','四川,绵阳,北川','104.467970','31.617203',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2784,559397,2,556077,'510727000000','平武县','四川,绵阳,平武','104.555583','32.409675',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2785,559687,2,556077,'510781000000','江油市','四川,绵阳,江油','104.745877','31.778025',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2786,560192,2,560191,'510801000000','市辖区','四川,广元','105.843357','32.435435',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2787,560193,2,560191,'510802000000','利州区','四川,广元,利州','105.845218','32.433898',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2788,560469,2,560191,'510811000000','昭化区','四川,广元,昭化','105.964121','32.322788',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2789,560735,2,560191,'510812000000','朝天区','四川,广元,朝天','105.890445','32.643982',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2790,560982,2,560191,'510821000000','旺苍县','四川,广元,旺苍','106.289905','32.228917',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2791,561413,2,560191,'510822000000','青川县','四川,广元,青川','105.238842','32.575485',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2792,561756,2,560191,'510823000000','剑阁县','四川,广元,剑阁','105.524766','32.287723',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2793,562393,2,560191,'510824000000','苍溪县','四川,广元,苍溪','105.934801','31.732432',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2794,563243,2,563242,'510901000000','市辖区','四川,遂宁','105.592898','30.532847',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2795,563244,2,563242,'510903000000','船山区','四川,遂宁,船山','105.568297','30.525475',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2796,563569,2,563242,'510904000000','安居区','四川,遂宁,安居','105.456342','30.355379',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2797,564115,2,563242,'510921000000','蓬溪县','四川,遂宁,蓬溪','105.707570','30.757575',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2798,564699,2,563242,'510922000000','射洪县','四川,遂宁,射洪','105.388405','30.870986',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2799,565387,2,563242,'510923000000','大英县','四川,遂宁,大英','105.236904','30.594337',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2800,565736,2,565735,'511001000000','市辖区','四川,内江','105.058433','29.580228',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2801,565737,2,565735,'511002000000','市中区','四川,内江,市中','105.067597','29.587053',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2802,565956,2,565735,'511011000000','东兴区','四川,内江,东兴','105.075490','29.592756',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2803,566504,2,565735,'511024000000','威远县','四川,内江,威远','104.668879','29.527440',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2804,566895,2,565735,'511025000000','资中县','四川,内江,资中','104.851944','29.764059',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2805,567769,2,565735,'511028000000','隆昌县','四川,内江,隆昌','105.287612','29.339476',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2806,568203,2,568202,'511101000000','市辖区','四川,乐山','103.765568','29.552106',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2807,568204,2,568202,'511102000000','市中区','四川,乐山,市中','103.761330','29.555375',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2808,568549,2,568202,'511111000000','沙湾区','四川,乐山,沙湾','103.549991','29.413091',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2809,568712,2,568202,'511112000000','五通桥区','四川,乐山,五通桥','103.818009','29.406932',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2810,568897,2,568202,'511113000000','金口河区','四川,乐山,金口河','103.078621','29.244345',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2811,568949,2,568202,'511123000000','犍为县','四川,乐山,犍为','103.949326','29.208171',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2812,569368,2,568202,'511124000000','井研县','四川,乐山,井研','104.069726','29.651287',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2813,569627,2,568202,'511126000000','夹江县','四川,乐山,夹江','103.571657','29.737630',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2814,569905,2,568202,'511129000000','沐川县','四川,乐山,沐川','103.902335','28.956647',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2815,570138,2,568202,'511132000000','峨边彝族自治县','四川,乐山,峨边','103.765568','29.552106',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2816,570296,2,568202,'511133000000','马边彝族自治县','四川,乐山,马边','103.546348','28.835521',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2817,570440,2,568202,'511181000000','峨眉山市','四川,乐山,峨眉山','103.484504','29.601199',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2818,570734,2,570733,'511301000000','市辖区','四川,南充','106.110698','30.837793',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2819,570735,2,570733,'511302000000','顺庆区','四川,南充,顺庆','106.092399','30.796486',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2820,571078,2,570733,'511303000000','高坪区','四川,南充,高坪','106.118808','30.781623',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2821,571510,2,570733,'511304000000','嘉陵区','四川,南充,嘉陵','106.071793','30.758748',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2822,572146,2,570733,'511321000000','南部县','四川,南充,南部','106.036584','31.347467',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2823,573339,2,570733,'511322000000','营山县','四川,南充,营山','106.565473','31.076458',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2824,574080,2,570733,'511323000000','蓬安县','四川,南充,蓬安','106.412151','31.029097',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2825,574767,2,570733,'511324000000','仪陇县','四川,南充,仪陇','106.303042','31.271562',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2826,575761,2,570733,'511325000000','西充县','四川,南充,西充','105.900878','30.995669',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2827,576427,2,570733,'511381000000','阆中市','四川,南充,阆中','106.005047','31.558357',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2828,576993,2,576992,'511401000000','市辖区','四川,眉山','103.848538','30.075439',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2829,576994,2,576992,'511402000000','东坡区','四川,眉山,东坡','103.831752','30.042345',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2830,577323,2,576992,'511403000000','彭山区','四川,眉山,彭山','103.872950','30.193056',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2831,577445,2,576992,'511421000000','仁寿县','四川,眉山,仁寿','104.134082','29.995630',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2832,578124,2,576992,'511423000000','洪雅县','四川,眉山,洪雅','103.372863','29.904890',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2833,578299,2,576992,'511424000000','丹棱县','四川,眉山,丹棱','103.512733','30.014448',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2834,578385,2,576992,'511425000000','青神县','四川,眉山,青神','103.846688','29.831358',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2835,578486,2,578485,'511501000000','市辖区','四川,宜宾','104.643215','28.751768',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2836,578487,2,578485,'511502000000','翠屏区','四川,宜宾,翠屏','104.620009','28.765690',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2837,578857,2,578485,'511503000000','南溪区','四川,宜宾,南溪','104.969882','28.845626',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2838,579114,2,578485,'511521000000','宜宾县','四川,宜宾,宜宾','104.533213','28.690045',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2839,579727,2,578485,'511523000000','江安县','四川,宜宾,江安','105.066943','28.723999',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2840,580070,2,578485,'511524000000','长宁县','四川,宜宾,长宁','104.921174','28.582169',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2841,580388,2,578485,'511525000000','高县','四川,宜宾,高县','104.517739','28.436226',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2842,580725,2,578485,'511526000000','珙县','四川,宜宾,珙县','104.709202','28.438630',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2843,581025,2,578485,'511527000000','筠连县','四川,宜宾,筠连','104.510988','28.163860',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2844,581304,2,578485,'511528000000','兴文县','四川,宜宾,兴文','105.236325','28.303614',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2845,581579,2,578485,'511529000000','屏山县','四川,宜宾,屏山','104.345974','28.828482',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2846,581871,2,581870,'511601000000','市辖区','四川,广安','106.633212','30.455961',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2847,581872,2,581870,'511602000000','广安区','四川,广安,广安','106.641608','30.474003',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2848,582526,2,581870,'511603000000','前锋区','四川,广安,前锋','106.893277','30.496300',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2849,582827,2,581870,'511621000000','岳池县','四川,广安,岳池','106.440114','30.537863',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2850,583751,2,581870,'511622000000','武胜县','四川,广安,武胜','106.295764','30.348772',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2851,584332,2,581870,'511623000000','邻水县','四川,广安,邻水','106.930380','30.334769',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2852,584900,2,581870,'511681000000','华蓥市','四川,广安,华蓥','106.783088','30.390435',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2853,585050,2,585049,'511701000000','市辖区','四川,达州','107.468023','31.209571',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2854,585051,2,585049,'511702000000','通川区','四川,达州,通川','107.504517','31.214724',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2855,585347,2,585049,'511703000000','达川区','四川,达州,达川','107.511845','31.196118',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2856,586085,2,585049,'511722000000','宣汉县','四川,达州,宣汉','107.727191','31.353835',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2857,586709,2,585049,'511723000000','开江县','四川,达州,开江','107.868736','31.082987',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2858,586957,2,585049,'511724000000','大竹县','四川,达州,大竹','107.204744','30.736266',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2859,587452,2,585049,'511725000000','渠县','四川,达州,渠县','106.972996','30.836659',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2860,588071,2,585049,'511781000000','万源市','四川,达州,万源','108.034657','32.081631',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2861,588539,2,588538,'511801000000','市辖区','四川,雅安','103.013261','29.980537',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2862,588540,2,588538,'511802000000','雨城区','四川,雅安,雨城','103.033083','30.005447',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2863,588771,2,588538,'511803000000','名山区','四川,雅安,名山','103.109185','30.069954',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2864,589001,2,588538,'511822000000','荥经县','四川,雅安,荥经','102.846738','29.792931',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2865,589135,2,588538,'511823000000','汉源县','四川,雅安,汉源','102.645453','29.347187',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2866,589376,2,588538,'511824000000','石棉县','四川,雅安,石棉','102.359462','29.227874',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2867,589494,2,588538,'511825000000','天全县','四川,雅安,天全','102.758317','30.066713',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2868,589654,2,588538,'511826000000','芦山县','四川,雅安,芦山','102.928260','30.144084',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2869,589711,2,588538,'511827000000','宝兴县','四川,雅安,宝兴','102.814531','30.368126',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2870,589780,2,589779,'511901000000','市辖区','四川,巴中','106.747477','31.867903',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2871,589781,2,589779,'511902000000','巴州区','四川,巴中,巴州','106.768878','31.851478',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2872,590246,2,589779,'511903000000','恩阳区','四川,巴中,恩阳','106.655347','31.786691',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2873,590712,2,589779,'511921000000','通江县','四川,巴中,通江','107.245033','31.911705',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2874,591330,2,589779,'511922000000','南江县','四川,巴中,南江','106.828697','32.346589',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2875,592003,2,589779,'511923000000','平昌县','四川,巴中,平昌','107.104008','31.560874',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2876,592599,2,592598,'512001000000','市辖区','四川,资阳','104.627636','30.128901',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2877,592600,2,592598,'512002000000','雁江区','四川,资阳,雁江','104.677096','30.108210',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2878,593157,2,592598,'512021000000','安岳县','四川,资阳,安岳','105.335613','30.097246',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2879,594205,2,592598,'512022000000','乐至县','四川,资阳,乐至','105.020204','30.276120',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2880,594865,2,594864,'513201000000','马尔康市','四川,阿坝,马尔康','102.206504','31.905813',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2881,594988,2,594864,'513221000000','汶川县','四川,阿坝,汶川','103.590387','31.476822',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2882,595128,2,594864,'513222000000','理县','四川,阿坝,理县','103.166853','31.436473',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2883,595230,2,594864,'513223000000','茂县','四川,阿坝,茂县','103.853522','31.681154',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2884,595404,2,594864,'513224000000','松潘县','四川,阿坝,松潘','103.604698','32.655325',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2885,595579,2,594864,'513225000000','九寨沟县','四川,阿坝,九寨沟','104.243841','33.252056',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2886,595731,2,594864,'513226000000','金川县','四川,阿坝,金川','102.063829','31.476277',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2887,595864,2,594864,'513227000000','小金县','四川,阿坝,小金','102.364373','30.999031',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2888,596022,2,594864,'513228000000','黑水县','四川,阿坝,黑水','102.990108','32.061895',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2889,596167,2,594864,'513230000000','壤塘县','四川,阿坝,壤塘','100.978526','32.265796',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2890,596243,2,594864,'513231000000','阿坝县','四川,阿坝,阿坝','101.706655','32.902459',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2891,596354,2,594864,'513232000000','若尔盖县','四川,阿坝,若尔盖','102.961798','33.575892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2892,596475,2,594864,'513233000000','红原县','四川,阿坝,红原','102.544405','32.790891',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2893,596526,2,596525,'513301000000','康定市','四川,甘孜,康定','101.957146','29.998436',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2894,596792,2,596525,'513322000000','泸定县','四川,甘孜,泸定','102.234618','29.914160',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2895,596957,2,596525,'513323000000','丹巴县','四川,甘孜,丹巴','101.890358','30.878577',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2896,597158,2,596525,'513324000000','九龙县','四川,甘孜,九龙','101.507294','29.000348',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2897,597242,2,596525,'513325000000','雅江县','四川,甘孜,雅江','101.014425','30.031533',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2898,597374,2,596525,'513326000000','道孚县','四川,甘孜,道孚','101.125237','30.979545',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2899,597557,2,596525,'513327000000','炉霍县','四川,甘孜,炉霍','100.676372','31.391790',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2900,597749,2,596525,'513328000000','甘孜县','四川,甘孜,甘孜','99.992671','31.622934',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2901,597992,2,596525,'513329000000','新龙县','四川,甘孜,新龙','100.311369','30.939169',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2902,598162,2,596525,'513330000000','德格县','四川,甘孜,德格','98.580915','31.806118',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2903,598363,2,596525,'513331000000','白玉县','四川,甘孜,白玉','98.824182','31.209913',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2904,598540,2,596525,'513332000000','石渠县','四川,甘孜,石渠','98.102900','32.978960',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2905,598733,2,596525,'513333000000','色达县','四川,甘孜,色达','100.332743','32.268129',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2906,598889,2,596525,'513334000000','理塘县','四川,甘孜,理塘','100.269818','29.996049',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2907,599129,2,596525,'513335000000','巴塘县','四川,甘孜,巴塘','99.110712','30.004677',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2908,599272,2,596525,'513336000000','乡城县','四川,甘孜,乡城','99.798435','28.931172',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2909,599377,2,596525,'513337000000','稻城县','四川,甘孜,稻城','100.298403','29.037007',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2910,599516,2,596525,'513338000000','得荣县','四川,甘孜,得荣','99.286335','28.713037',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2911,599660,2,599659,'513401000000','西昌市','四川,凉山,西昌','102.264449','27.894504',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2912,599974,2,599659,'513422000000','木里藏族自治县','四川,凉山,木里','101.280206','27.928835',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2913,600127,2,599659,'513423000000','盐源县','四川,凉山,盐源','101.509188','27.422645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2914,600415,2,599659,'513424000000','德昌县','四川,凉山,德昌','102.175670','27.402839',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2915,600579,2,599659,'513425000000','会理县','四川,凉山,会理','102.244683','26.655026',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2916,600938,2,599659,'513426000000','会东县','四川,凉山,会东','102.577961','26.634669',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2917,601284,2,599659,'513427000000','宁南县','四川,凉山,宁南','102.759634','27.066384',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2918,601444,2,599659,'513428000000','普格县','四川,凉山,普格','102.540901','27.376413',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2919,601640,2,599659,'513429000000','布拖县','四川,凉山,布拖','102.811631','27.706192',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2920,601863,2,599659,'513430000000','金阳县','四川,凉山,金阳','103.248772','27.696861',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2921,602076,2,599659,'513431000000','昭觉县','四川,凉山,昭觉','102.842611','28.014088',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2922,602396,2,599659,'513432000000','喜德县','四川,凉山,喜德','102.412518','28.306726',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2923,602594,2,599659,'513433000000','冕宁县','四川,凉山,冕宁','102.177010','28.549657',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2924,602865,2,599659,'513434000000','越西县','四川,凉山,越西','102.507680','28.639801',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2925,603201,2,599659,'513435000000','甘洛县','四川,凉山,甘洛','102.771749','28.966069',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2926,603460,2,599659,'513436000000','美姑县','四川,凉山,美姑','103.132180','28.328640',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2927,603792,2,599659,'513437000000','雷波县','四川,凉山,雷波','103.571696','28.262683',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2928,604133,2,604132,'520101000000','市辖区','贵州,贵阳','106.630153','26.647661',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2929,604134,2,604132,'520102000000','南明区','贵州,贵阳,南明','106.714371','26.567944',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2930,604342,2,604132,'520103000000','云岩区','贵州,贵阳,云岩','106.630153','26.647661',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2931,604530,2,604132,'520111000000','花溪区','贵州,贵阳,花溪','106.670258','26.409817',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2932,604769,2,604132,'520112000000','乌当区','贵州,贵阳,乌当','106.630153','26.647661',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2933,604883,2,604132,'520113000000','白云区','贵州,贵阳,白云','106.630153','26.647661',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2934,604989,2,604132,'520115000000','观山湖区','贵州,贵阳,观山湖','106.622452','26.601450',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2935,605114,2,604132,'520121000000','开阳县','贵州,贵阳,开阳','106.965088','27.057764',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2936,605264,2,604132,'520122000000','息烽县','贵州,贵阳,息烽','106.740410','27.090479',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2937,605453,2,604132,'520123000000','修文县','贵州,贵阳,修文','106.592110','26.838926',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2938,605593,2,604132,'520181000000','清镇市','贵州,贵阳,清镇','106.470711','26.556080',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2939,605835,2,605834,'520201000000','钟山区','贵州,六盘水,钟山','104.843555','26.574979',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2940,605994,2,605834,'520203000000','六枝特区','贵州,六盘水,六枝特','105.480029','26.201228',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2941,606258,2,605834,'520221000000','水城县','贵州,六盘水,水城','104.957831','26.547904',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2942,606493,2,605834,'520222000000','盘县','贵州,六盘水,盘县','104.471535','25.710002',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2943,607030,2,607029,'520301000000','市辖区','贵州,遵义','106.927389','27.725654',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2944,607031,2,607029,'520302000000','红花岗区','贵州,遵义,红花岗','106.893709','27.644755',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2945,607235,2,607029,'520303000000','汇川区','贵州,遵义,汇川','106.934270','27.750125',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2946,607385,2,607029,'520304000000','播州区','贵州,遵义,播州','106.927389','27.725654',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2947,607584,2,607029,'520322000000','桐梓县','贵州,遵义,桐梓','106.825644','28.133583',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2948,607833,2,607029,'520323000000','绥阳县','贵州,遵义,绥阳','107.191222','27.946222',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2949,607966,2,607029,'520324000000','正安县','贵州,遵义,正安','107.453945','28.553285',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2950,608138,2,607029,'520325000000','道真仡佬族苗族自治县','贵州,遵义,道真','106.927389','27.725654',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2951,608236,2,607029,'520326000000','务川仡佬族苗族自治县','贵州,遵义,务川','107.898957','28.563086',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2952,608370,2,607029,'520327000000','凤冈县','贵州,遵义,凤冈','107.716356','27.954695',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2953,608471,2,607029,'520328000000','湄潭县','贵州,遵义,湄潭','107.465407','27.749055',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2954,608620,2,607029,'520329000000','余庆县','贵州,遵义,余庆','107.905278','27.215420',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2955,608701,2,607029,'520330000000','习水县','贵州,遵义,习水','106.197138','28.331270',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2956,608974,2,607029,'520381000000','赤水市','贵州,遵义,赤水','105.697472','28.590337',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2957,609114,2,607029,'520382000000','仁怀市','贵州,遵义,仁怀','106.400342','27.791650',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2958,609310,2,609309,'520401000000','市辖区','贵州,安顺','105.947593','26.253072',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2959,609311,2,609309,'520402000000','西秀区','贵州,安顺,西秀','105.965535','26.245433',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2960,609686,2,609309,'520403000000','平坝区','贵州,安顺,平坝','106.255557','26.405502',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2961,609845,2,609309,'520422000000','普定县','贵州,安顺,普定','105.743196','26.301446',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2962,610030,2,609309,'520423000000','镇宁布依族苗族自治县','贵州,安顺,镇宁','105.770402','26.057362',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2963,610256,2,609309,'520424000000','关岭布依族苗族自治县','贵州,安顺,关岭','105.622053','25.940378',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2964,610426,2,609309,'520425000000','紫云苗族布依族自治县','贵州,安顺,紫云','106.087216','25.755886',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2965,610608,2,610607,'520501000000','市辖区','贵州,毕节','105.283992','27.302589',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2966,610609,2,610607,'520502000000','七星关区','贵州,毕节,七星关','105.305138','27.298494',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2967,611207,2,610607,'520521000000','大方县','贵州,毕节,大方','105.613174','27.141682',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2968,611627,2,610607,'520522000000','黔西县','贵州,毕节,黔西','106.033544','27.007713',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2969,612043,2,610607,'520523000000','金沙县','贵州,毕节,金沙','106.220228','27.459214',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2970,612308,2,610607,'520524000000','织金县','贵州,毕节,织金','105.770542','26.663450',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2971,612915,2,610607,'520525000000','纳雍县','贵州,毕节,纳雍','105.382715','26.777645',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2972,613369,2,610607,'520526000000','威宁彝族回族苗族自治县','贵州,毕节,威宁','104.278740','26.856210',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2973,614035,2,610607,'520527000000','赫章县','贵州,毕节,赫章','104.727418','27.123079',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2974,614531,2,614530,'520601000000','市辖区','贵州,铜仁','109.189598','27.731514',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2975,614532,2,614530,'520602000000','碧江区','贵州,铜仁,碧江','109.181122','27.690653',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2976,614636,2,614530,'520603000000','万山区','贵州,铜仁,万山','109.213644','27.517896',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2977,614733,2,614530,'520621000000','江口县','贵州,铜仁,江口','108.839557','27.699650',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2978,614900,2,614530,'520622000000','玉屏侗族自治县','贵州,铜仁,玉屏','108.914680','27.243012',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2979,615001,2,614530,'520623000000','石阡县','贵州,铜仁,石阡','108.223612','27.513829',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2980,615331,2,614530,'520624000000','思南县','贵州,铜仁,思南','108.253873','27.937560',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2981,615886,2,614530,'520625000000','印江土家族苗族自治县','贵州,铜仁,印江','108.409752','27.994247',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2982,616278,2,614530,'520626000000','德江县','贵州,铜仁,德江','108.119807','28.263964',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2983,616644,2,614530,'520627000000','沿河土家族自治县','贵州,铜仁,沿河','108.503870','28.563928',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2984,617116,2,614530,'520628000000','松桃苗族自治县','贵州,铜仁,松桃','109.202886','28.154071',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2985,617671,2,617670,'522301000000','兴义市','贵州,黔西南,兴义','104.895467','25.092040',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2986,617923,2,617670,'522322000000','兴仁县','贵州,黔西南,兴仁','105.186238','25.435183',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2987,618102,2,617670,'522323000000','普安县','贵州,黔西南,普安','104.953063','25.784135',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2988,618205,2,617670,'522324000000','晴隆县','贵州,黔西南,晴隆','105.218991','25.834784',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2989,618316,2,617670,'522325000000','贞丰县','贵州,黔西南,贞丰','105.649864','25.385760',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2990,618489,2,617670,'522326000000','望谟县','贵州,黔西南,望谟','106.099617','25.178422',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2991,618671,2,617670,'522327000000','册亨县','贵州,黔西南,册亨','105.811593','24.983663',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2992,618816,2,617670,'522328000000','安龙县','贵州,黔西南,安龙','105.442701','25.099014',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2993,619018,2,619017,'522601000000','凯里市','贵州,黔东南,凯里','107.981212','26.566867',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2994,619308,2,619017,'522622000000','黄平县','贵州,黔东南,黄平','107.916412','26.905396',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2995,619574,2,619017,'522623000000','施秉县','贵州,黔东南,施秉','108.124380','27.032920',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2996,619657,2,619017,'522624000000','三穗县','贵州,黔东南,三穗','108.675267','26.952968',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2997,619831,2,619017,'522625000000','镇远县','贵州,黔东南,镇远','108.429691','27.049110',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2998,619970,2,619017,'522626000000','岑巩县','贵州,黔东南,岑巩','108.816060','27.173887',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (2999,620122,2,619017,'522627000000','天柱县','贵州,黔东南,天柱','109.207757','26.909678',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3000,620465,2,619017,'522628000000','锦屏县','贵州,黔东南,锦屏','109.200534','26.676233',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3001,620673,2,619017,'522629000000','剑河县','贵州,黔东南,剑河','108.441501','26.728274',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3002,620996,2,619017,'522630000000','台江县','贵州,黔东南,台江','108.321245','26.667525',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3003,621166,2,619017,'522631000000','黎平县','贵州,黔东南,黎平','109.136658','26.230424',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3004,621616,2,619017,'522632000000','榕江县','贵州,黔东南,榕江','108.521881','25.931893',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3005,621906,2,619017,'522633000000','从江县','贵州,黔东南,从江','108.905329','25.753009',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3006,622312,2,619017,'522634000000','雷山县','贵州,黔东南,雷山','108.077540','26.378443',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3007,622484,2,619017,'522635000000','麻江县','贵州,黔东南,麻江','107.589359','26.491105',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3008,622561,2,619017,'522636000000','丹寨县','贵州,黔东南,丹寨','107.788728','26.198320',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3009,622735,2,622734,'522701000000','都匀市','贵州,黔南,都匀','107.518847','26.259427',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3010,622888,2,622734,'522702000000','福泉市','贵州,黔南,福泉','107.520386','26.686335',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3011,622973,2,622734,'522722000000','荔波县','贵州,黔南,荔波','107.886450','25.410654',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3012,623082,2,622734,'522723000000','贵定县','贵州,黔南,贵定','107.232889','26.557071',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3013,623205,2,622734,'522725000000','瓮安县','贵州,黔南,瓮安','107.471555','27.078472',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3014,623318,2,622734,'522726000000','独山县','贵州,黔南,独山','107.545048','25.822132',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3015,623391,2,622734,'522727000000','平塘县','贵州,黔南,平塘','107.323077','25.831955',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3016,623530,2,622734,'522728000000','罗甸县','贵州,黔南,罗甸','106.751418','25.424845',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3017,623723,2,622734,'522729000000','长顺县','贵州,黔南,长顺','106.447376','26.022116',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3018,623813,2,622734,'522730000000','龙里县','贵州,黔南,龙里','106.979524','26.453154',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3019,623901,2,622734,'522731000000','惠水县','贵州,黔南,惠水','106.657089','26.132061',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3020,624122,2,622734,'522732000000','三都水族自治县','贵州,黔南,三都','107.869749','25.983202',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3021,624374,2,624373,'530101000000','市辖区','云南,昆明','102.832891','24.880095',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3022,624375,2,624373,'530102000000','五华区','云南,昆明,五华','102.832891','24.880095',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3023,624486,2,624373,'530103000000','盘龙区','云南,昆明,盘龙','102.832891','24.880095',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3024,624599,2,624373,'530111000000','官渡区','云南,昆明,官渡','102.832891','24.880095',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3025,624730,2,624373,'530112000000','西山区','云南,昆明,西山','102.832891','24.880095',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3026,624860,2,624373,'530113000000','东川区','云南,昆明,东川','103.187820','26.082872',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3027,625034,2,624373,'530114000000','呈贡区','云南,昆明,呈贡','102.832891','24.880095',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3028,625111,2,624373,'530122000000','晋宁县','云南,昆明,晋宁','102.832891','24.880095',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3029,625255,2,624373,'530124000000','富民县','云南,昆明,富民','102.497681','25.222046',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3030,625337,2,624373,'530125000000','宜良县','云南,昆明,宜良','103.141304','24.919704',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3031,625486,2,624373,'530126000000','石林彝族自治县','云南,昆明,石林','102.832891','24.880095',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3032,625585,2,624373,'530127000000','嵩明县','云南,昆明,嵩明','103.036911','25.338642',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3033,625669,2,624373,'530128000000','禄劝彝族苗族自治县','云南,昆明,禄劝','102.832891','24.880095',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3034,625883,2,624373,'530129000000','寻甸回族彝族自治县','云南,昆明,寻甸','102.832891','24.880095',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3035,626074,2,624373,'530181000000','安宁市','云南,昆明,安宁','102.832891','24.880095',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3036,626182,2,626181,'530301000000','市辖区','云南,曲靖','103.796167','25.489999',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3037,626183,2,626181,'530302000000','麒麟区','云南,曲靖,麒麟','103.805012','25.495241',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3038,626343,2,626181,'530303000000','沾益区','云南,曲靖,沾益','103.822324','25.600507',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3039,626485,2,626181,'530321000000','马龙县','云南,曲靖,马龙','103.578454','25.428130',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3040,626569,2,626181,'530322000000','陆良县','云南,曲靖,陆良','103.666663','25.030051',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3041,626731,2,626181,'530323000000','师宗县','云南,曲靖,师宗','103.985478','24.822403',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3042,626852,2,626181,'530324000000','罗平县','云南,曲靖,罗平','104.308675','24.884626',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3043,627020,2,626181,'530325000000','富源县','云南,曲靖,富源','104.255015','25.674238',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3044,627194,2,626181,'530326000000','会泽县','云南,曲靖,会泽','103.297361','26.417947',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3045,627596,2,626181,'530381000000','宣威市','云南,曲靖,宣威','104.104475','26.219767',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3046,627982,2,627981,'530401000000','市辖区','云南,玉溪','102.546543','24.352036',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3047,627983,2,627981,'530402000000','红塔区','云南,玉溪,红塔','102.540179','24.341098',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3048,628099,2,627981,'530403000000','江川区','云南,玉溪,江川','102.753734','24.287534',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3049,628181,2,627981,'530422000000','澄江县','云南,玉溪,澄江','102.908248','24.673734',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3050,628228,2,627981,'530423000000','通海县','云南,玉溪,通海','102.760039','24.112205',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3051,628314,2,627981,'530424000000','华宁县','云南,玉溪,华宁','102.928835','24.192761',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3052,628397,2,627981,'530425000000','易门县','云南,玉溪,易门','102.162531','24.671651',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3053,628463,2,627981,'530426000000','峨山彝族自治县','云南,玉溪,峨山','102.397333','24.169401',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3054,628548,2,627981,'530427000000','新平彝族傣族自治县','云南,玉溪,新平','101.990157','24.070051',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3055,628684,2,627981,'530428000000','元江哈尼族彝族傣族自治县','云南,玉溪,元江','101.998103','23.596503',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3056,628777,2,628776,'530501000000','市辖区','云南,保山','99.161761','25.112046',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3057,628778,2,628776,'530502000000','隆阳区','云南,保山,隆阳','99.165607','25.121154',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3058,629117,2,628776,'530521000000','施甸县','云南,保山,施甸','99.189221','24.723064',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3059,629271,2,628776,'530523000000','龙陵县','云南,保山,龙陵','98.689230','24.586766',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3060,629403,2,628776,'530524000000','昌宁县','云南,保山,昌宁','99.605142','24.827839',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3061,629541,2,628776,'530581000000','腾冲市','云南,保山,腾冲','98.497291','25.017570',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3062,629782,2,629781,'530601000000','市辖区','云南,昭通','103.717465','27.338257',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3063,629783,2,629781,'530602000000','昭阳区','云南,昭通,昭阳','103.706539','27.320075',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3064,629988,2,629781,'530621000000','鲁甸县','云南,昭通,鲁甸','103.558042','27.186659',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3065,630098,2,629781,'530622000000','巧家县','云南,昭通,巧家','102.930164','26.908461',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3066,630299,2,629781,'530623000000','盐津县','云南,昭通,盐津','104.234442','28.108710',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3067,630404,2,629781,'530624000000','大关县','云南,昭通,大关','103.891146','27.747978',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3068,630498,2,629781,'530625000000','永善县','云南,昭通,永善','103.638067','28.229113',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3069,630656,2,629781,'530626000000','绥江县','云南,昭通,绥江','103.968978','28.592100',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3070,630704,2,629781,'530627000000','镇雄县','云南,昭通,镇雄','104.873579','27.441668',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3071,630989,2,629781,'530628000000','彝良县','云南,昭通,彝良','104.048289','27.625419',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3072,631144,2,629781,'530629000000','威信县','云南,昭通,威信','105.049027','27.846901',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3073,631242,2,629781,'530630000000','水富县','云南,昭通,水富','104.416031','28.629880',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3074,631277,2,631276,'530701000000','市辖区','云南,丽江','100.227750','26.855047',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3075,631278,2,631276,'530702000000','古城区','云南,丽江,古城','100.225766','26.877190',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3076,631349,2,631276,'530721000000','玉龙纳西族自治县','云南,丽江,玉龙','100.236955','26.821460',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3077,631469,2,631276,'530722000000','永胜县','云南,丽江,永胜','100.750795','26.684225',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3078,631634,2,631276,'530723000000','华坪县','云南,丽江,华坪','101.266195','26.629211',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3079,631704,2,631276,'530724000000','宁蒗彝族自治县','云南,丽江,宁蒗','100.852001','27.282071',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3080,631812,2,631811,'530801000000','市辖区','云南,普洱','100.966512','22.825065',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3081,631813,2,631811,'530802000000','思茅区','云南,普洱,思茅','100.977165','22.786910',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3082,631894,2,631811,'530821000000','宁洱哈尼族彝族自治县','云南,普洱,宁洱','100.980485','22.781242',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3083,631993,2,631811,'530822000000','墨江哈尼族自治县','云南,普洱,墨江','101.692461','23.431894',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3084,632177,2,631811,'530823000000','景东彝族自治县','云南,普洱,景东','100.833877','24.446731',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3085,632361,2,631811,'530824000000','景谷傣族彝族自治县','云南,普洱,景谷','100.702871','23.497028',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3086,632513,2,631811,'530825000000','镇沅彝族哈尼族拉祜族自治县','云南,普洱,镇沅','101.108595','24.004442',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3087,632634,2,631811,'530826000000','江城哈尼族彝族自治县','云南,普洱,江城','101.862120','22.585868',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3088,632693,2,631811,'530827000000','孟连傣族拉祜族佤族自治县','云南,普洱,孟连','99.584157','22.329100',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3089,632742,2,631811,'530828000000','澜沧拉祜族自治县','云南,普洱,澜沧','99.931975','22.555905',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3090,632924,2,631811,'530829000000','西盟佤族自治县','云南,普洱,西','100.966512','22.825065',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3091,632972,2,632971,'530901000000','市辖区','云南,临沧','100.079583','23.877573',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3092,632973,2,632971,'530902000000','临翔区','云南,临沧,临翔','100.082523','23.895137',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3093,633086,2,632971,'530921000000','凤庆县','云南,临沧,凤庆','99.928460','24.580424',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3094,633287,2,632971,'530922000000','云县','云南,临沧,云县','100.123248','24.437061',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3095,633498,2,632971,'530923000000','永德县','云南,临沧,永德','99.259340','24.018357',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3096,633629,2,632971,'530924000000','镇康县','云南,临沧,镇康','98.825285','23.762584',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3097,633711,2,632971,'530925000000','双江拉祜族佤族布朗族傣族自治县','云南,临沧,双江','99.827698','23.473499',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3098,633793,2,632971,'530926000000','耿马傣族佤族自治县','云南,临沧,耿马','99.395366','23.529249',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3099,633898,2,632971,'530927000000','沧源佤族自治县','云南,临沧,沧源','99.246197','23.146712',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3100,634007,2,634006,'532301000000','楚雄市','云南,楚雄,楚雄','101.545906','25.032889',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3101,634176,2,634006,'532322000000','双柏县','云南,楚雄,双柏','101.641937','24.688875',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3102,634269,2,634006,'532323000000','牟定县','云南,楚雄,牟定','101.546566','25.313122',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3103,634366,2,634006,'532324000000','南华县','云南,楚雄,南华','101.273577','25.192293',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3104,634505,2,634006,'532325000000','姚安县','云南,楚雄,姚安','101.241728','25.504173',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3105,634592,2,634006,'532326000000','大姚县','云南,楚雄,大姚','101.336617','25.729513',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3106,634734,2,634006,'532327000000','永仁县','云南,楚雄,永仁','101.666133','26.049464',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3107,634805,2,634006,'532328000000','元谋县','云南,楚雄,元谋','101.874520','25.704338',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3108,634894,2,634006,'532329000000','武定县','云南,楚雄,武定','102.404338','25.530389',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3109,635039,2,634006,'532331000000','禄丰县','云南,楚雄,禄丰','102.079027','25.150111',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3110,635220,2,635219,'532501000000','个旧市','云南,红河,个旧','103.160034','23.359121',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3111,635347,2,635219,'532502000000','开远市','云南,红河,开远','103.267143','23.714316',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3112,635435,2,635219,'532503000000','蒙自市','云南,红河,蒙自','103.364905','23.396201',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3113,635548,2,635219,'532504000000','弥勒市','云南,红河,弥勒','103.414874','24.411912',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3114,635698,2,635219,'532523000000','屏边苗族自治县','云南,红河,屏边','103.687612','22.983560',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3115,635786,2,635219,'532524000000','建水县','云南,红河,建水','102.826557','23.634700',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3116,635955,2,635219,'532525000000','石屏县','云南,红河,石屏','102.494984','23.705936',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3117,636080,2,635219,'532527000000','泸西县','云南,红河,泸西','103.766196','24.532025',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3118,636176,2,635219,'532528000000','元阳县','云南,红河,元阳','102.835223','23.219932',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3119,636329,2,635219,'532529000000','红河县','云南,红河,红河','102.420600','23.369161',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3120,636434,2,635219,'532530000000','金平苗族瑶族傣族自治县','云南,红河,金平','103.226448','22.779543',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3121,636546,2,635219,'532531000000','绿春县','云南,红河,绿春','102.392463','22.993718',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3122,636647,2,635219,'532532000000','河口瑶族自治县','云南,红河,河口','103.960560','22.509593',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3123,636689,2,636688,'532601000000','文山市','云南,文山,文山','104.232510','23.386306',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3124,636850,2,636688,'532622000000','砚山县','云南,文山,砚山','104.337244','23.605740',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3125,636970,2,636688,'532623000000','西畴县','云南,文山,西畴','104.672597','23.437782',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3126,637052,2,636688,'532624000000','麻栗坡县','云南,文山,麻栗坡','104.702799','23.125714',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3127,637166,2,636688,'532625000000','马关县','云南,文山,马关','104.394158','23.012915',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3128,637312,2,636688,'532626000000','丘北县','云南,文山,丘北','104.195820','24.041919',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3129,637426,2,636688,'532627000000','广南县','云南,文山,广南','105.054981','24.045941',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3130,637619,2,636688,'532628000000','富宁县','云南,文山,富宁','105.630999','23.625283',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3131,637779,2,637778,'532801000000','景洪市','云南,西双版纳,景洪','100.771679','22.000143',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3132,637910,2,637778,'532822000000','勐海县','云南,西双版纳,勐海','100.452548','21.957354',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3133,638015,2,637778,'532823000000','勐腊县','云南,西双版纳,勐腊','101.564636','21.459233',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3134,638093,2,638092,'532901000000','大理市','云南,大理,大理','100.241369','25.593067',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3135,638249,2,638092,'532922000000','漾濞彝族自治县','云南,大理,漾濞','99.958015','25.670148',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3136,638325,2,638092,'532923000000','祥云县','云南,大理,祥云','100.550946','25.483850',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3137,638475,2,638092,'532924000000','宾川县','云南,大理,宾川','100.575412','25.827182',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3138,638576,2,638092,'532925000000','弥渡县','云南,大理,弥渡','100.490991','25.343804',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3139,638674,2,638092,'532926000000','南涧彝族自治县','云南,大理,南涧','100.509036','25.043510',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3140,638764,2,638092,'532927000000','巍山彝族回族自治县','云南,大理,巍山','100.307175','25.227212',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3141,638858,2,638092,'532928000000','永平县','云南,大理,永平','99.541236','25.464681',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3142,638941,2,638092,'532929000000','云龙县','云南,大理,云龙','99.371121','25.885596',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3143,639039,2,638092,'532930000000','洱源县','云南,大理,洱源','99.951054','26.111160',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3144,639139,2,638092,'532931000000','剑川县','云南,大理,剑川','99.905559','26.537033',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3145,639241,2,638092,'532932000000','鹤庆县','云南,大理,鹤庆','100.176498','26.560231',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3146,639369,2,639368,'533102000000','瑞丽市','云南,德宏,瑞丽','97.855477','24.017836',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3147,639416,2,639368,'533103000000','芒市','云南,德宏,芒市','98.588086','24.433690',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3148,639524,2,639368,'533122000000','梁河县','云南,德宏,梁河','98.296657','24.804232',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3149,639600,2,639368,'533123000000','盈江县','云南,德宏,盈江','97.931955','24.705211',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3150,639719,2,639368,'533124000000','陇川县','云南,德宏,陇川','97.792105','24.182965',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3151,639803,2,639802,'533301000000','泸水市','云南,怒江,泸水','98.853097','25.852547',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3152,639889,2,639802,'533323000000','福贡县','云南,怒江,福贡','98.869132','26.901832',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3153,639956,2,639802,'533324000000','贡山独龙族怒族自治县','云南,怒江,贡山','98.853097','25.852547',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3154,639990,2,639802,'533325000000','兰坪白族普米族自治县','云南,怒江,兰坪','99.416677','26.453571',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3155,640108,2,640107,'533401000000','香格里拉市','云南,迪庆,香格里拉','99.700836','27.829743',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3156,640184,2,640107,'533422000000','德钦县','云南,迪庆,德钦','98.911561','28.486162',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3157,640239,2,640107,'533423000000','维西傈僳族自治县','云南,迪庆,维西','99.287173','27.177162',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3158,640334,2,640333,'540101000000','市辖区','西藏,拉萨','91.140856','29.645554',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3159,640335,2,640333,'540102000000','城关区','西藏,拉萨,城关','91.140856','29.645554',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3160,640399,2,640333,'540103000000','堆龙德庆区','西藏,拉萨,堆龙德庆','91.140856','29.645554',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3161,640441,2,640333,'540121000000','林周县','西藏,拉萨,林周','91.140856','29.645554',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3162,640497,2,640333,'540122000000','当雄县','西藏,拉萨,当雄','91.140856','29.645554',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3163,640534,2,640333,'540123000000','尼木县','西藏,拉萨,尼木','91.140856','29.645554',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3164,640575,2,640333,'540124000000','曲水县','西藏,拉萨,曲水','91.140856','29.645554',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3165,640599,2,640333,'540126000000','达孜县','西藏,拉萨,达孜','91.140856','29.645554',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3166,640626,2,640333,'540127000000','墨竹工卡县','西藏,拉萨,墨竹工卡','91.140856','29.645554',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3167,640676,2,640675,'540202000000','桑珠孜区','西藏,日喀则,桑珠孜','88.887270','29.270389',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3168,640865,2,640675,'540221000000','南木林县','西藏,日喀则,南木林','89.099243','29.682331',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3169,641029,2,640675,'540222000000','江孜县','西藏,日喀则,江孜','89.605574','28.911659',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3170,641204,2,640675,'540223000000','定日县','西藏,日喀则,定日','87.126120','28.658743',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3171,641393,2,640675,'540224000000','萨迦县','西藏,日喀则,萨迦','88.021674','28.899664',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3172,641512,2,640675,'540225000000','拉孜县','西藏,日喀则,拉孜','87.637041','29.081660',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3173,641622,2,640675,'540226000000','昂仁县','西藏,日喀则,昂仁','87.236051','29.294802',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3174,641825,2,640675,'540227000000','谢通门县','西藏,日喀则,谢通门','88.261620','29.432641',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3175,641940,2,640675,'540228000000','白朗县','西藏,日喀则,白朗','89.261977','29.107688',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3176,642063,2,640675,'540229000000','仁布县','西藏,日喀则,仁布','89.841984','29.230933',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3177,642146,2,640675,'540230000000','康马县','西藏,日喀则,康马','89.681663','28.555627',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3178,642203,2,640675,'540231000000','定结县','西藏,日喀则,定结','87.765872','28.364159',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3179,642284,2,640675,'540232000000','仲巴县','西藏,日喀则,仲巴','84.031530','29.770279',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3180,642356,2,640675,'540233000000','亚东县','西藏,日喀则,亚东','88.907094','27.484806',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3181,642389,2,640675,'540234000000','吉隆县','西藏,日喀则,吉隆','85.297535','28.852394',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3182,642437,2,640675,'540235000000','聂拉木县','西藏,日喀则,聂拉木','85.982237','28.155186',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3183,642489,2,640675,'540236000000','萨嘎县','西藏,日喀则,萨嘎','85.232941','29.328818',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3184,642536,2,640675,'540237000000','岗巴县','西藏,日喀则,岗巴','88.520031','28.274601',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3185,642572,2,642571,'540302000000','卡若区','西藏,昌都,卡若','97.180437','31.138507',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3186,642755,2,642571,'540321000000','江达县','西藏,昌都,江达','98.218430','31.499202',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3187,642864,2,642571,'540322000000','贡觉县','西藏,昌都,贡觉','98.270970','30.860099',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3188,643026,2,642571,'540323000000','类乌齐县','西藏,昌都,类乌齐','96.600246','31.211601',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3189,643119,2,642571,'540324000000','丁青县','西藏,昌都,丁青','95.595761','31.412405',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3190,643197,2,642571,'540325000000','察雅县','西藏,昌都,察雅','97.568752','30.653943',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3191,643349,2,642571,'540326000000','八宿县','西藏,昌都,八宿','96.917836','30.053209',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3192,643474,2,642571,'540327000000','左贡县','西藏,昌都,左贡','97.841022','29.671069',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3193,643613,2,642571,'540328000000','芒康县','西藏,昌都,芒康','98.593113','29.679908',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3194,643691,2,642571,'540329000000','洛隆县','西藏,昌都,洛隆','95.824567','30.741571',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3195,643769,2,642571,'540330000000','边坝县','西藏,昌都,边坝','94.707800','30.933652',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3196,643864,2,643863,'540402000000','巴宜区','西藏,林芝,巴宜','94.360994','29.653727',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3197,643943,2,643863,'540421000000','工布江达县','西藏,林芝,工布江达','93.246077','29.885280',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3198,644033,2,643863,'540422000000','米林县','西藏,林芝,米林','94.213486','29.215833',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3199,644109,2,643863,'540423000000','墨脱县','西藏,林芝,墨脱','95.332241','29.325734',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3200,644164,2,643863,'540424000000','波密县','西藏,林芝,波密','95.768158','29.858766',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3201,644260,2,643863,'540425000000','察隅县','西藏,林芝,察隅','94.361490','29.649128',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3202,644364,2,643863,'540426000000','朗县','西藏,林芝,朗县','93.074702','29.046337',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3203,644424,2,644423,'540501000000','市辖区','西藏,山南','91.117212','29.646922',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3204,644425,2,644423,'540502000000','乃东区','西藏,山南,乃东','91.761539','29.224904',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3205,644480,2,644423,'540521000000','扎囊县','西藏,山南,扎囊','91.337250','29.245114',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3206,644548,2,644423,'540522000000','贡嘎县','西藏,山南,贡嘎','90.984140','29.289455',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3207,644600,2,644423,'540523000000','桑日县','西藏,山南,桑日','92.015818','29.259189',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3208,644647,2,644423,'540524000000','琼结县','西藏,山南,琼结','91.683881','29.024625',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3209,644672,2,644423,'540525000000','曲松县','西藏,山南,曲松','92.203739','29.062826',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3210,644699,2,644423,'540526000000','措美县','西藏,山南,措美','91.433509','28.438202',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3211,644720,2,644423,'540527000000','洛扎县','西藏,山南,洛扎','90.859992','28.385713',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3212,644755,2,644423,'540528000000','加查县','西藏,山南,加查','92.593993','29.140290',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3213,644840,2,644423,'540529000000','隆子县','西藏,山南,隆子','92.463305','28.408552',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3214,644932,2,644423,'540530000000','错那县','西藏,山南,错那','91.960139','27.991716',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3215,644967,2,644423,'540531000000','浪卡子县','西藏,山南,浪卡子','90.397977','28.968031',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3216,645077,2,645076,'542421000000','那曲县','西藏,那曲,那曲','92.053500','31.469643',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3217,645231,2,645076,'542422000000','嘉黎县','西藏,那曲,嘉黎','93.232528','30.640815',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3218,645364,2,645076,'542423000000','比如县','西藏,那曲,比如','93.679639','31.480250',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3219,645550,2,645076,'542424000000','聂荣县','西藏,那曲,聂荣','92.303346','32.107772',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3220,645703,2,645076,'542425000000','安多县','西藏,那曲,安多','91.682330','32.265176',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3221,645791,2,645076,'542426000000','申扎县','西藏,那曲,申扎','88.709853','30.930505',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3222,645862,2,645076,'542427000000','索县','西藏,那曲,索县','93.785631','31.886918',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3223,645997,2,645076,'542428000000','班戈县','西藏,那曲,班戈','90.009957','31.392411',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3224,646094,2,645076,'542429000000','巴青县','西藏,那曲,巴青','94.053463','31.918563',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3225,646261,2,645076,'542430000000','尼玛县','西藏,那曲,尼玛','87.236772','31.784701',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3226,646353,2,645076,'542431000000','双湖县','西藏,那曲,双湖','88.837642','33.188515',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3227,646393,2,646392,'542521000000','普兰县','西藏,阿里,普兰','81.176237','30.294402',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3228,646407,2,646392,'542522000000','札达县','西藏,阿里,札达','79.802706','31.479217',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3229,646431,2,646392,'542523000000','噶尔县','西藏,阿里,噶尔','80.096419','32.491488',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3230,646451,2,646392,'542524000000','日土县','西藏,阿里,日土','79.732427','33.381359',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3231,646470,2,646392,'542525000000','革吉县','西藏,阿里,革吉','81.145433','32.387233',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3232,646495,2,646392,'542526000000','改则县','西藏,阿里,改则','84.062590','32.302713',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3233,646551,2,646392,'542527000000','措勤县','西藏,阿里,措勤','85.159494','31.016769',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3234,646580,2,646579,'610101000000','市辖区','陕西,西安','108.940174','34.341568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3235,646581,2,646579,'610102000000','新城区','陕西,西安,新城','108.940174','34.341568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3236,646694,2,646579,'610103000000','碑林区','陕西,西安,碑林','108.940174','34.341568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3237,646800,2,646579,'610104000000','莲湖区','陕西,西安,莲湖','108.940174','34.341568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3238,646944,2,646579,'610111000000','灞桥区','陕西,西安,灞桥','108.940174','34.341568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3239,647214,2,646579,'610112000000','未央区','陕西,西安,未央','108.940174','34.341568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3240,647486,2,646579,'610113000000','雁塔区','陕西,西安,雁塔','108.940174','34.341568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3241,647710,2,646579,'610114000000','阎良区','陕西,西安,阎良','108.940174','34.341568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3242,647821,2,646579,'610115000000','临潼区','陕西,西安,临潼','108.940174','34.341568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3243,648113,2,646579,'610116000000','长安区','陕西,西安,长安','108.940174','34.341568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3244,648645,2,646579,'610117000000','高陵区','陕西,西安,高陵','108.940174','34.341568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3245,648756,2,646579,'610122000000','蓝田县','陕西,西安,蓝田','108.940174','34.341568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3246,649123,2,646579,'610124000000','周至县','陕西,西安,周至','108.940174','34.341568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3247,649424,2,646579,'610125000000','户县','陕西,西安,户县','108.940174','34.341568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3248,649980,2,649979,'610201000000','市辖区','陕西,铜川','108.945233','34.896756',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3249,649981,2,649979,'610202000000','王益区','陕西,铜川,王益','109.075578','35.068964',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3250,650048,2,649979,'610203000000','印台区','陕西,铜川,印台','109.099975','35.114492',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3251,650189,2,649979,'610204000000','耀州区','陕西,铜川,耀州','108.980514','34.908916',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3252,650386,2,649979,'610222000000','宜君县','陕西,铜川,宜君','109.116932','35.398577',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3253,650576,2,650575,'610301000000','市辖区','陕西,宝鸡','107.237974','34.361979',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3254,650577,2,650575,'610302000000','渭滨区','陕西,宝鸡,渭滨','107.149968','34.371184',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3255,650747,2,650575,'610303000000','金台区','陕西,宝鸡,金台','107.146806','34.376069',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3256,650913,2,650575,'610304000000','陈仓区','陕西,宝鸡,陈仓','107.387436','34.354456',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3257,651278,2,650575,'610322000000','凤翔县','陕西,宝鸡,凤翔','107.400737','34.521218',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3258,651528,2,650575,'610323000000','岐山县','陕西,宝鸡,岐山','107.621054','34.443459',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3259,651697,2,650575,'610324000000','扶风县','陕西,宝鸡,扶风','107.900219','34.375411',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3260,651872,2,650575,'610326000000','眉县','陕西,宝鸡,眉县','107.749767','34.274247',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3261,652014,2,650575,'610327000000','陇县','陕西,宝鸡,陇县','106.864397','34.893050',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3262,652186,2,650575,'610328000000','千阳县','陕西,宝鸡,千阳','107.132442','34.642381',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3263,652294,2,650575,'610329000000','麟游县','陕西,宝鸡,麟游','107.793525','34.677902',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3264,652387,2,650575,'610330000000','凤县','陕西,宝鸡,凤县','106.515756','33.908469',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3265,652505,2,650575,'610331000000','太白县','陕西,宝鸡,太白','107.319116','34.058401',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3266,652582,2,652581,'610401000000','市辖区','陕西,咸阳','108.708991','34.329605',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3267,652583,2,652581,'610402000000','秦都区','陕西,咸阳,秦都','108.706272','34.329567',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3268,652779,2,652581,'610403000000','杨陵区','陕西,咸阳,杨陵','108.084732','34.272117',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3269,652863,2,652581,'610404000000','渭城区','陕西,咸阳,渭城','108.737213','34.361988',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3270,653042,2,652581,'610422000000','三原县','陕西,咸阳,三原','108.940509','34.617382',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3271,653234,2,652581,'610423000000','泾阳县','陕西,咸阳,泾阳','108.842623','34.527114',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3272,653470,2,652581,'610424000000','乾县','陕西,咸阳,乾县','108.239473','34.527551',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3273,653679,2,652581,'610425000000','礼泉县','陕西,咸阳,礼泉','108.425018','34.481764',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3274,653918,2,652581,'610426000000','永寿县','陕西,咸阳,永寿','108.142311','34.691979',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3275,654101,2,652581,'610427000000','彬县','陕西,咸阳,彬县','108.077658','35.043911',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3276,654369,2,652581,'610428000000','长武县','陕西,咸阳,长武','107.798757','35.205886',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3277,654525,2,652581,'610429000000','旬邑县','陕西,咸阳,旬邑','108.333986','35.111978',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3278,654661,2,652581,'610430000000','淳化县','陕西,咸阳,淳化','108.580681','34.799250',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3279,654876,2,652581,'610431000000','武功县','陕西,咸阳,武功','108.200398','34.260204',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3280,655081,2,652581,'610481000000','兴平市','陕西,咸阳,兴平','108.490475','34.299221',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3281,655296,2,655295,'610501000000','市辖区','陕西,渭南','109.509786','34.499995',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3282,655297,2,655295,'610502000000','临渭区','陕西,渭南,临渭','109.492726','34.498192',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3283,655724,2,655295,'610503000000','华州区','陕西,渭南,华州','109.761417','34.511949',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3284,655885,2,655295,'610522000000','潼关县','陕西,渭南,潼关','110.246350','34.544296',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3285,655919,2,655295,'610523000000','大荔县','陕西,渭南,大荔','109.941658','34.797184',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3286,656260,2,655295,'610524000000','合阳县','陕西,渭南,合阳','110.149466','35.237986',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3287,656494,2,655295,'610525000000','澄城县','陕西,渭南,澄城','109.932350','35.190245',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3288,656682,2,655295,'610526000000','蒲城县','陕西,渭南,蒲城','109.586506','34.955855',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3289,656988,2,655295,'610527000000','白水县','陕西,渭南,白水','109.590671','35.177452',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3290,657132,2,655295,'610528000000','富平县','陕西,渭南,富平','109.180331','34.751086',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3291,657425,2,655295,'610581000000','韩城市','陕西,渭南,韩城','110.442847','35.476788',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3292,657706,2,655295,'610582000000','华阴市','陕西,渭南,华阴','110.092301','34.566096',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3293,657849,2,657848,'610601000000','市辖区','陕西,延安','109.489727','36.585455',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3294,657850,2,657848,'610602000000','宝塔区','陕西,延安,宝塔','109.493106','36.591266',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3295,658235,2,657848,'610603000000','安塞区','陕西,延安,安塞','109.489727','36.585455',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3296,658462,2,657848,'610621000000','延长县','陕西,延安,延长','110.012334','36.579313',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3297,658765,2,657848,'610622000000','延川县','陕西,延安,延川','110.193514','36.878117',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3298,658951,2,657848,'610623000000','子长县','陕西,延安,子长','109.675234','37.142668',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3299,659327,2,657848,'610625000000','志丹县','陕西,延安,志丹','108.768432','36.822194',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3300,659450,2,657848,'610626000000','吴起县','陕西,延安,吴起','108.175933','36.927216',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3301,659554,2,657848,'610627000000','甘泉县','陕西,延安,甘泉','109.351020','36.276526',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3302,659632,2,657848,'610628000000','富县','陕西,延安,富县','109.379711','35.988010',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3303,659777,2,657848,'610629000000','洛川县','陕西,延安,洛川','109.432369','35.761975',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3304,660160,2,657848,'610630000000','宜川县','陕西,延安,宜川','110.168963','36.050178',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3305,660375,2,657848,'610631000000','黄龙县','陕西,延安,黄龙','109.840373','35.584467',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3306,660433,2,657848,'610632000000','黄陵县','陕西,延安,黄陵','109.262961','35.579428',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3307,660644,2,660643,'610701000000','市辖区','陕西,汉中','107.023323','33.067480',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3308,660645,2,660643,'610702000000','汉台区','陕西,汉中,汉台','107.031856','33.067771',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3309,660909,2,660643,'610721000000','南郑县','陕西,汉中,南郑','106.936230','32.999334',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3310,661244,2,660643,'610722000000','城固县','陕西,汉中,城固','107.333930','33.157131',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3311,661535,2,660643,'610723000000','洋县','陕西,汉中,洋县','107.545837','33.222739',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3312,661839,2,660643,'610724000000','西乡县','陕西,汉中,西乡','107.766614','32.983101',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3313,662072,2,660643,'610725000000','勉县','陕西,汉中,勉县','106.673221','33.153553',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3314,662289,2,660643,'610726000000','宁强县','陕西,汉中,宁强','106.257171','32.829694',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3315,662521,2,660643,'610727000000','略阳县','陕西,汉中,略阳','106.156718','33.327281',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3316,662704,2,660643,'610728000000','镇巴县','陕西,汉中,镇巴','107.895035','32.536704',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3317,662908,2,660643,'610729000000','留坝县','陕西,汉中,留坝','106.920808','33.617571',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3318,662993,2,660643,'610730000000','佛坪县','陕西,汉中,佛坪','107.990539','33.524359',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3319,663047,2,663046,'610801000000','市辖区','陕西,榆林','109.734589','38.285390',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3320,663048,2,663046,'610802000000','榆阳区','陕西,榆林,榆阳','109.720309','38.277029',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3321,663445,2,663046,'610803000000','横山区','陕西,榆林,横山','109.294346','37.962209',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3322,663827,2,663046,'610821000000','神木县','陕西,榆林,神木','110.498868','38.842498',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3323,664184,2,663046,'610822000000','府谷县','陕西,榆林,府谷','111.067366','39.028116',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3324,664441,2,663046,'610824000000','靖边县','陕西,榆林,靖边','108.793988','37.599438',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3325,664686,2,663046,'610825000000','定边县','陕西,榆林,定边','107.601267','37.594612',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3326,665047,2,663046,'610826000000','绥德县','陕西,榆林,绥德','110.263362','37.502940',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3327,665732,2,663046,'610827000000','米脂县','陕西,榆林,米脂','110.183754','37.755417',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3328,665953,2,663046,'610828000000','佳县','陕西,榆林,佳县','110.491345','38.019511',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3329,666627,2,663046,'610829000000','吴堡县','陕西,榆林,吴堡','110.739673','37.452068',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3330,666741,2,663046,'610830000000','清涧县','陕西,榆林,清涧','110.121209','37.088878',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3331,667106,2,663046,'610831000000','子洲县','陕西,榆林,子洲','110.035250','37.610683',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3332,667682,2,667681,'610901000000','市辖区','陕西,安康','109.029022','32.684714',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3333,667683,2,667681,'610902000000','汉滨区','陕西,安康,汉滨','109.026836','32.695173',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3334,668237,2,667681,'610921000000','汉阴县','陕西,安康,汉阴','108.508745','32.893026',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3335,668397,2,667681,'610922000000','石泉县','陕西,安康,石泉','108.247887','33.038408',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3336,668570,2,667681,'610923000000','宁陕县','陕西,安康,宁陕','108.314283','33.310527',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3337,668662,2,667681,'610924000000','紫阳县','陕西,安康,紫阳','108.534229','32.520246',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3338,668877,2,667681,'610925000000','岚皋县','陕西,安康,岚皋','108.902049','32.307001',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3339,669026,2,667681,'610926000000','平利县','陕西,安康,平利','109.361864','32.388854',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3340,669181,2,667681,'610927000000','镇坪县','陕西,安康,镇坪','109.526873','31.883672',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3341,669251,2,667681,'610928000000','旬阳县','陕西,安康,旬阳','109.365265','32.834086',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3342,669578,2,667681,'610929000000','白河县','陕西,安康,白河','110.112629','32.809026',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3343,669708,2,669707,'611001000000','市辖区','陕西,商洛','109.940477','33.870422',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3344,669709,2,669707,'611002000000','商州区','陕西,商洛,商州','109.941241','33.862703',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3345,670030,2,669707,'611021000000','洛南县','陕西,商洛,洛南','110.148509','34.090838',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3346,670291,2,669707,'611022000000','丹凤县','陕西,商洛,丹凤','110.327331','33.695783',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3347,670459,2,669707,'611023000000','商南县','陕西,商洛,商南','110.881807','33.530995',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3348,670594,2,669707,'611024000000','山阳县','陕西,商洛,山阳','109.882290','33.532172',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3349,670852,2,669707,'611025000000','镇安县','陕西,商洛,镇安','109.152893','33.423357',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3350,671028,2,669707,'611026000000','柞水县','陕西,商洛,柞水','109.114207','33.686110',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3351,671121,2,671120,'620101000000','市辖区','甘肃,兰州','103.834303','36.061089',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3352,671122,2,671120,'620102000000','城关区','甘肃,兰州,城关','103.834303','36.061089',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3353,671324,2,671120,'620103000000','七里河区','甘肃,兰州,七里河','103.834303','36.061089',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3354,671477,2,671120,'620104000000','西固区','甘肃,兰州,西固','103.834303','36.061089',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3355,671606,2,671120,'620105000000','安宁区','甘肃,兰州,安宁','103.834303','36.061089',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3356,671675,2,671120,'620111000000','红古区','甘肃,兰州,红古','103.834303','36.061089',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3357,671740,2,671120,'620121000000','永登县','甘肃,兰州,永登','103.834303','36.061089',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3358,671967,2,671120,'620122000000','皋兰县','甘肃,兰州,皋兰','103.834303','36.061089',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3359,672034,2,671120,'620123000000','榆中县','甘肃,兰州,榆中','103.834303','36.061089',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3360,672331,2,672330,'620201000000','市辖区','甘肃,嘉峪关','98.289152','39.773130',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3361,672386,2,672385,'620301000000','市辖区','甘肃,金昌','102.188043','38.520089',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3362,672387,2,672385,'620302000000','金川区','甘肃,金昌,金川','102.194089','38.521085',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3363,672439,2,672385,'620321000000','永昌县','甘肃,金昌,永昌','101.984649','38.243170',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3364,672578,2,672577,'620401000000','市辖区','甘肃,白银','104.138559','36.544756',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3365,672579,2,672577,'620402000000','白银区','甘肃,白银,白银','104.148556','36.535398',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3366,672670,2,672577,'620403000000','平川区','甘肃,白银,平川','104.825208','36.728304',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3367,672773,2,672577,'620421000000','靖远县','甘肃,白银,靖远','104.676774','36.571366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3368,672978,2,672577,'620422000000','会宁县','甘肃,白银,会宁','105.053358','35.692823',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3369,673307,2,672577,'620423000000','景泰县','甘肃,白银,景泰','104.063091','37.183804',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3370,673464,2,673463,'620501000000','市辖区','甘肃,天水','105.724947','34.580863',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3371,673465,2,673463,'620502000000','秦州区','甘肃,天水,秦州','105.724199','34.580892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3372,673952,2,673463,'620503000000','麦积区','甘肃,天水,麦积','105.889557','34.570384',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3373,674399,2,673463,'620521000000','清水县','甘肃,天水,清水','106.137293','34.749865',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3374,674684,2,673463,'620522000000','秦安县','甘肃,天水,秦安','105.674983','34.858916',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3375,675138,2,673463,'620523000000','甘谷县','甘肃,天水,甘谷','105.340864','34.745465',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3376,675568,2,673463,'620524000000','武山县','甘肃,天水,武山','104.890782','34.721380',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3377,675938,2,673463,'620525000000','张家川回族自治县','甘肃,天水,张家川','106.204518','34.988037',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3378,676216,2,676215,'620601000000','市辖区','甘肃,武威','102.638011','37.928264',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3379,676217,2,676215,'620602000000','凉州区','甘肃,武威,凉州','102.642184','37.928225',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3380,676751,2,676215,'620621000000','民勤县','甘肃,武威,民勤','103.093792','38.624350',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3381,677055,2,676215,'620622000000','古浪县','甘肃,武威,古浪','102.897533','37.470120',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3382,677344,2,676215,'620623000000','天祝藏族自治县','甘肃,武威,天祝','103.141757','36.971740',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3383,677569,2,677568,'620701000000','市辖区','甘肃,张掖','100.449818','38.925875',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3384,677570,2,677568,'620702000000','甘州区','甘肃,张掖,甘州','100.478058','38.929763',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3385,677865,2,677568,'620721000000','肃南裕固族自治县','甘肃,张掖,肃南','99.615601','38.836932',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3386,677983,2,677568,'620722000000','民乐县','甘肃,张掖,民乐','100.812860','38.430794',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3387,678174,2,677568,'620723000000','临泽县','甘肃,张掖,临泽','100.164445','39.152642',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3388,678270,2,677568,'620724000000','高台县','甘肃,张掖,高台','99.819317','39.377733',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3389,678427,2,677568,'620725000000','山丹县','甘肃,张掖,山丹','101.088575','38.784758',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3390,678561,2,678560,'620801000000','市辖区','甘肃,平凉','106.665240','35.543051',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3391,678562,2,678560,'620802000000','崆峒区','甘肃,平凉,崆峒','106.674767','35.542491',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3392,678825,2,678560,'620821000000','泾川县','甘肃,平凉,泾川','107.367850','35.332666',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3393,679066,2,678560,'620822000000','灵台县','甘肃,平凉,灵台','107.621124','35.065399',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3394,679271,2,678560,'620823000000','崇信县','甘肃,平凉,崇信','107.035409','35.302123',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3395,679368,2,678560,'620824000000','华亭县','甘肃,平凉,华亭','106.653158','35.218292',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3396,679507,2,678560,'620825000000','庄浪县','甘肃,平凉,庄浪','106.036687','35.202385',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3397,679825,2,678560,'620826000000','静宁县','甘肃,平凉,静宁','105.732556','35.521977',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3398,680192,2,680191,'620901000000','市辖区','甘肃,酒泉','98.494483','39.732410',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3399,680193,2,680191,'620902000000','肃州区','甘肃,酒泉,肃州','98.507850','39.745071',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3400,680365,2,680191,'620921000000','金塔县','甘肃,酒泉,金塔','98.903270','39.983599',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3401,680478,2,680191,'620922000000','瓜州县','甘肃,酒泉,瓜州','95.782306','40.520545',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3402,680582,2,680191,'620923000000','肃北蒙古族自治县','甘肃,酒泉,肃北','94.876579','39.512450',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3403,680615,2,680191,'620924000000','阿克塞哈萨克族自治县','甘肃,酒泉,阿克塞','94.340204','39.633943',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3404,680634,2,680191,'620981000000','玉门市','甘肃,酒泉,玉门','97.045679','40.291843',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3405,680736,2,680191,'620982000000','敦煌市','甘肃,酒泉,敦煌','94.661967','40.142128',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3406,680816,2,680815,'621001000000','市辖区','甘肃,庆阳','107.643631','35.709077',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3407,680817,2,680815,'621002000000','西峰区','甘肃,庆阳,西峰','107.651077','35.730652',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3408,680943,2,680815,'621021000000','庆城县','甘肃,庆阳,庆城','107.881802','36.016299',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3409,681132,2,680815,'621022000000','环县','甘肃,庆阳,环县','107.308501','36.568435',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3410,681414,2,680815,'621023000000','华池县','甘肃,庆阳,华池','107.990035','36.461355',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3411,681559,2,680815,'621024000000','合水县','甘肃,庆阳,合水','108.019530','35.819243',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3412,681665,2,680815,'621025000000','正宁县','甘肃,庆阳,正宁','108.359976','35.491890',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3413,681784,2,680815,'621026000000','宁县','甘肃,庆阳,宁县','107.928369','35.502177',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3414,682081,2,680815,'621027000000','镇原县','甘肃,庆阳,镇原','107.200832','35.677462',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3415,682323,2,682322,'621101000000','市辖区','甘肃,定西','104.626282','35.580662',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3416,682324,2,682322,'621102000000','安定区','甘肃,定西,安定','104.610668','35.580629',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3417,682673,2,682322,'621121000000','通渭县','甘肃,定西,通渭','105.242061','35.210831',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3418,683034,2,682322,'621122000000','陇西县','甘肃,定西,陇西','104.634984','35.003940',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3419,683278,2,682322,'621123000000','渭源县','甘肃,定西,渭源','104.215467','35.136755',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3420,683515,2,682322,'621124000000','临洮县','甘肃,定西,临洮','103.859565','35.394989',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3421,683869,2,682322,'621125000000','漳县','甘肃,定西,漳县','104.471572','34.848444',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3422,684024,2,682322,'621126000000','岷县','甘肃,定西,岷县','104.036880','34.438076',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3423,684416,2,684415,'621201000000','市辖区','甘肃,陇南','104.921841','33.400684',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3424,684417,2,684415,'621202000000','武都区','甘肃,陇南,武都','104.926337','33.392211',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3425,685162,2,684415,'621221000000','成县','甘肃,陇南,成县','105.742203','33.750477',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3426,685439,2,684415,'621222000000','文县','甘肃,陇南,文县','104.683434','32.943815',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3427,685772,2,684415,'621223000000','宕昌县','甘肃,陇南,宕昌','104.393385','34.047261',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3428,686138,2,684415,'621224000000','康县','甘肃,陇南,康县','105.609169','33.329136',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3429,686518,2,684415,'621225000000','西和县','甘肃,陇南,西和','105.298756','34.014215',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3430,686933,2,684415,'621226000000','礼县','甘肃,陇南,礼县','105.178640','34.189345',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3431,687542,2,684415,'621227000000','徽县','甘肃,陇南,徽县','106.087780','33.768826',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3432,687781,2,684415,'621228000000','两当县','甘肃,陇南,两当','106.304967','33.908917',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3433,687917,2,687916,'622901000000','临夏市','甘肃,临夏,临夏','103.243021','35.604376',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3434,687999,2,687916,'622921000000','临夏县','甘肃,临夏,临夏','103.243021','35.604376',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3435,688248,2,687916,'622922000000','康乐县','甘肃,临夏,康乐','103.708354','35.370505',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3436,688417,2,687916,'622923000000','永靖县','甘肃,临夏,永靖','103.285854','35.958306',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3437,688588,2,687916,'622924000000','广河县','甘肃,临夏,广河','103.575834','35.488052',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3438,688701,2,687916,'622925000000','和政县','甘肃,临夏,和政','103.350997','35.424603',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3439,688841,2,687916,'622926000000','东乡族自治县','甘肃,临夏,东乡族自治县','103.389346','35.663752',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3440,689096,2,687916,'622927000000','积石山保安族东乡族撒拉族自治县','甘肃,临夏,积石山','102.875843','35.717661',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3441,689266,2,689265,'623001000000','合作市','甘肃,甘南,合作','102.910882','35.000399',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3442,689327,2,689265,'623021000000','临潭县','甘肃,甘南,临潭','103.353919','34.692747',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3443,689488,2,689265,'623022000000','卓尼县','甘肃,甘南,卓尼','103.507109','34.589588',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3444,689610,2,689265,'623023000000','舟曲县','甘肃,甘南,舟曲','104.371586','33.785259',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3445,689845,2,689265,'623024000000','迭部县','甘肃,甘南,迭部','103.221870','34.055939',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3446,689913,2,689265,'623025000000','玛曲县','甘肃,甘南,玛曲','102.072698','33.997712',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3447,689966,2,689265,'623026000000','碌曲县','甘肃,甘南,碌曲','102.487327','34.590944',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3448,690005,2,689265,'623027000000','夏河县','甘肃,甘南,夏河','102.521807','35.202503',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3449,690096,2,690095,'630101000000','市辖区','青海,西宁','101.778228','36.617144',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3450,690097,2,690095,'630102000000','城东区','青海,西宁,城东','101.778228','36.617144',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3451,690164,2,690095,'630103000000','城中区','青海,西宁,城中','101.778228','36.617144',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3452,690235,2,690095,'630104000000','城西区','青海,西宁,城西','101.778228','36.617144',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3453,690283,2,690095,'630105000000','城北区','青海,西宁,城北','101.778228','36.617144',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3454,690357,2,690095,'630121000000','大通回族土族自治县','青海,西宁,大通','101.679987','36.930717',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3455,690689,2,690095,'630122000000','湟中县','青海,西宁,湟中','101.778228','36.617144',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3456,691114,2,690095,'630123000000','湟源县','青海,西宁,湟源','101.778228','36.617144',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3457,691279,2,691278,'630202000000','乐都区','青海,海东,乐都','102.401725','36.482058',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3458,691667,2,691278,'630203000000','平安区','青海,海东,平安','102.108835','36.500563',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3459,691796,2,691278,'630222000000','民和回族土族自治县','青海,海东,民和','102.830892','36.320321',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3460,692148,2,691278,'630223000000','互助土族自治县','青海,海东,互助','101.959271','36.844249',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3461,692479,2,691278,'630224000000','化隆回族自治县','青海,海东,化隆','102.264143','36.094908',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3462,692870,2,691278,'630225000000','循化撒拉族自治县','青海,海东,循化','102.485646','35.848586',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3463,693041,2,693040,'632221000000','门源回族自治县','青海,海北,门源','101.622364','37.376449',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3464,693186,2,693040,'632222000000','祁连县','青海,海北,祁连','100.253211','38.177112',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3465,693243,2,693040,'632223000000','海晏县','青海,海北,海晏','100.994430','36.896467',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3466,693286,2,693040,'632224000000','刚察县','青海,海北,刚察','100.145833','37.325470',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3467,693343,2,693342,'632321000000','同仁县','青海,黄南,同仁','102.018323','35.516063',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3468,693437,2,693342,'632322000000','尖扎县','青海,黄南,尖扎','102.031183','35.938299',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3469,693541,2,693342,'632323000000','泽库县','青海,黄南,泽库','101.466689','35.035313',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3470,693623,2,693342,'632324000000','河南蒙古族自治县','青海,黄南,河南','102.015248','35.519548',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3471,693673,2,693672,'632521000000','共和县','青海,海南,共和','100.620031','36.284107',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3472,693808,2,693672,'632522000000','同德县','青海,海南,同德','100.578052','35.254791',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3473,693906,2,693672,'632523000000','贵德县','青海,海南,贵德','101.433298','36.040150',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3474,694046,2,693672,'632524000000','兴海县','青海,海南,兴海','99.987966','35.588613',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3475,694121,2,693672,'632525000000','贵南县','青海,海南,贵南','100.747503','35.586715',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3476,694221,2,694220,'632621000000','玛沁县','青海,果洛,玛沁','100.238888','34.477433',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3477,694272,2,694220,'632622000000','班玛县','青海,果洛,班玛','100.737138','32.932723',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3478,694315,2,694220,'632623000000','甘德县','青海,果洛,甘德','99.900905','33.969219',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3479,694361,2,694220,'632624000000','达日县','青海,果洛,达日','99.651392','33.748921',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3480,694407,2,694220,'632625000000','久治县','青海,果洛,久治','101.482831','33.429471',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3481,694440,2,694220,'632626000000','玛多县','青海,果洛,玛多','98.209206','34.915946',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3482,694479,2,694478,'632701000000','玉树市','青海,玉树,玉树','97.008785','32.993107',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3483,694572,2,694478,'632722000000','杂多县','青海,玉树,杂多','95.300723','32.893185',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3484,694622,2,694478,'632723000000','称多县','青海,玉树,称多','97.110832','33.369218',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3485,694695,2,694478,'632724000000','治多县','青海,玉树,治多','95.613080','33.852751',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3486,694728,2,694478,'632725000000','囊谦县','青海,玉树,囊谦','96.480650','32.203246',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3487,694816,2,694478,'632726000000','曲麻莱县','青海,玉树,曲麻莱','95.797367','34.126429',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3488,694847,2,694846,'632801000000','格尔木市','青海,海西,格尔木','94.928484','36.406404',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3489,694932,2,694846,'632802000000','德令哈市','青海,海西,德令哈','97.360985','37.369436',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3490,695009,2,694846,'632821000000','乌兰县','青海,海西,乌兰','98.480195','36.929749',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3491,695060,2,694846,'632822000000','都兰县','青海,海西,都兰','98.095844','36.302496',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3492,695184,2,694846,'632823000000','天峻县','青海,海西,天峻','99.022984','37.300851',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3493,695261,2,695260,'640101000000','市辖区','宁夏,银川','106.230909','38.487193',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3494,695262,2,695260,'640104000000','兴庆区','宁夏,银川,兴庆','106.230909','38.487193',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3495,695412,2,695260,'640105000000','西夏区','宁夏,银川,西夏','106.230909','38.487193',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3496,695500,2,695260,'640106000000','金凤区','宁夏,银川,金凤','106.230909','38.487193',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3497,695575,2,695260,'640121000000','永宁县','宁夏,银川,永宁','106.230909','38.487193',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3498,695675,2,695260,'640122000000','贺兰县','宁夏,银川,贺兰','106.230909','38.487193',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3499,695767,2,695260,'640181000000','灵武市','宁夏,银川,灵武','106.230909','38.487193',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3500,695884,2,695883,'640201000000','市辖区','宁夏,石嘴山','106.383303','38.983236',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3501,695885,2,695883,'640202000000','大武口区','宁夏,石嘴山,大武口','106.367861','39.019060',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3502,695959,2,695883,'640205000000','惠农区','宁夏,石嘴山,惠农','106.781176','39.239302',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3503,696058,2,695883,'640221000000','平罗县','宁夏,石嘴山,平罗','106.523474','38.913544',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3504,696253,2,696252,'640301000000','市辖区','宁夏,吴忠','106.198393','37.997460',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3505,696254,2,696252,'640302000000','利通区','宁夏,吴忠,利通','106.212566','37.983458',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3506,696427,2,696252,'640303000000','红寺堡区','宁夏,吴忠,红寺堡','106.062114','37.425702',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3507,696505,2,696252,'640323000000','盐池县','宁夏,吴忠,盐池','107.407359','37.783205',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3508,696633,2,696252,'640324000000','同心县','宁夏,吴忠,同心','105.914458','36.980575',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3509,696803,2,696252,'640381000000','青铜峡市','宁夏,吴忠,青铜峡','106.078818','38.021302',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3510,696929,2,696928,'640401000000','市辖区','宁夏,固原','106.242610','36.015855',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3511,696930,2,696928,'640402000000','原州区','宁夏,固原,原州','106.287782','36.003740',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3512,697133,2,696928,'640422000000','西吉县','宁夏,固原,西吉','105.729085','35.963913',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3513,697457,2,696928,'640423000000','隆德县','宁夏,固原,隆德','106.111595','35.625915',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3514,697594,2,696928,'640424000000','泾源县','宁夏,固原,泾源','106.330646','35.498160',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3515,697714,2,696928,'640425000000','彭阳县','宁夏,固原,彭阳','106.638340','35.849565',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3516,697888,2,697887,'640501000000','市辖区','宁夏,中卫','105.196902','37.499972',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3517,697889,2,697887,'640502000000','沙坡头区','宁夏,中卫,沙坡头','105.190536','37.514564',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3518,698087,2,697887,'640521000000','中宁县','宁夏,中卫,中宁','105.685285','37.491505',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3519,698240,2,697887,'640522000000','海原县','宁夏,中卫,海原','105.643487','36.565033',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3520,698442,2,698441,'650101000000','市辖区','新疆,乌鲁木齐','87.616848','43.825592',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3521,698443,2,698441,'650102000000','天山区','新疆,乌鲁木齐,天山','87.616848','43.825592',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3522,698654,2,698441,'650103000000','沙依巴克区','新疆,乌鲁木齐,沙依巴克','87.616848','43.825592',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3523,698884,2,698441,'650104000000','新市区','新疆,乌鲁木齐,新市区','87.616848','43.825592',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3524,699054,2,698441,'650105000000','水磨沟区','新疆,乌鲁木齐,水磨沟','87.616848','43.825592',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3525,699229,2,698441,'650106000000','头屯河区','新疆,乌鲁木齐,头屯河','87.616848','43.825592',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3526,699313,2,698441,'650107000000','达坂城区','新疆,乌鲁木齐,达坂城','87.616848','43.825592',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3527,699363,2,698441,'650109000000','米东区','新疆,乌鲁木齐,米东','87.616848','43.825592',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3528,699535,2,698441,'650121000000','乌鲁木齐县','新疆,乌鲁木齐,乌鲁木齐','87.616848','43.825592',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3529,699584,2,699583,'650201000000','市辖区','新疆,克拉玛依','84.889207','45.579888',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3530,699585,2,699583,'650202000000','独山子区','新疆,克拉玛依,独山子','84.886974','44.328096',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3531,699606,2,699583,'650203000000','克拉玛依区','新疆,克拉玛依,克拉玛依','84.867844','45.602526',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3532,699730,2,699583,'650204000000','白碱滩区','新疆,克拉玛依,白碱滩','85.131696','45.687855',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3533,699752,2,699583,'650205000000','乌尔禾区','新疆,克拉玛依,乌尔禾','85.693742','46.089148',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3534,699774,2,699773,'650402000000','高昌区','新疆,吐鲁番,高昌','89.182342','42.947635',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3535,699884,2,699773,'650421000000','鄯善县','新疆,吐鲁番,鄯善','90.213330','42.868744',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3536,700000,2,699773,'650422000000','托克逊县','新疆,吐鲁番,托克逊','88.653814','42.792521',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3537,700071,2,700070,'650502000000','伊州区','新疆,哈密,伊州','93.514916','42.818501',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3538,700350,2,700070,'650521000000','巴里坤哈萨克自治县','新疆,哈密,巴里坤','93.016625','43.598763',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3539,700438,2,700070,'650522000000','伊吾县','新疆,哈密,伊吾','94.697074','43.254978',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3540,700490,2,700489,'652301000000','昌吉市','新疆,昌吉,昌吉','87.304112','44.013183',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3541,700685,2,700489,'652302000000','阜康市','新疆,昌吉,阜康','87.946894','44.168576',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3542,700805,2,700489,'652323000000','呼图壁县','新疆,昌吉,呼图壁','86.898902','44.191428',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3543,700956,2,700489,'652324000000','玛纳斯县','新疆,昌吉,玛纳斯','86.213997','44.303893',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3544,701230,2,700489,'652325000000','奇台县','新疆,昌吉,奇台','89.593967','44.022066',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3545,701375,2,700489,'652327000000','吉木萨尔县','新疆,昌吉,吉木萨尔','89.180437','44.000497',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3546,701474,2,700489,'652328000000','木垒哈萨克自治县','新疆,昌吉,木垒','90.286028','43.834689',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3547,701560,2,701559,'652701000000','博乐市','新疆,博尔塔拉,博乐','82.051005','44.853870',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3548,701834,2,701559,'652702000000','阿拉山口市','新疆,博尔塔拉,阿拉山口','82.559396','45.172228',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3549,701839,2,701559,'652722000000','精河县','新疆,博尔塔拉,精河','82.894195','44.600408',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3550,701978,2,701559,'652723000000','温泉县','新疆,博尔塔拉,温泉','81.024816','44.968857',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3551,702105,2,702104,'652801000000','库尔勒市','新疆,巴音郭楞,库尔勒','86.174633','41.725892',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3552,702357,2,702104,'652822000000','轮台县','新疆,巴音郭楞,轮台','84.252156','41.777702',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3553,702447,2,702104,'652823000000','尉犁县','新疆,巴音郭楞,尉犁','86.261321','41.343933',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3554,702573,2,702104,'652824000000','若羌县','新疆,巴音郭楞,若羌','88.167152','39.023242',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3555,702634,2,702104,'652825000000','且末县','新疆,巴音郭楞,且末','85.528865','38.147895',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3556,702727,2,702104,'652826000000','焉耆回族自治县','新疆,巴音郭楞,焉耆','86.574067','42.059759',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3557,702821,2,702104,'652827000000','和静县','新疆,巴音郭楞,和静','86.384065','42.323625',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3558,702995,2,702104,'652828000000','和硕县','新疆,巴音郭楞,和硕','86.863963','42.268371',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3559,703063,2,702104,'652829000000','博湖县','新疆,巴音郭楞,博湖','86.631998','41.980152',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3560,703120,2,703119,'652901000000','阿克苏市','新疆,阿克苏,阿克苏','80.260605','41.168779',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3561,703353,2,703119,'652922000000','温宿县','新疆,阿克苏,温宿','80.238959','41.276688',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3562,703576,2,703119,'652923000000','库车县','新疆,阿克苏,库车','82.962016','41.717906',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3563,703858,2,703119,'652924000000','沙雅县','新疆,阿克苏,沙雅','82.781819','41.221667',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3564,704059,2,703119,'652925000000','新和县','新疆,阿克苏,新和','82.609220','41.548118',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3565,704209,2,703119,'652926000000','拜城县','新疆,阿克苏,拜城','81.874156','41.796910',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3566,704413,2,703119,'652927000000','乌什县','新疆,阿克苏,乌什','79.224445','41.214652',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3567,704556,2,703119,'652928000000','阿瓦提县','新疆,阿克苏,阿瓦提','80.373137','40.644529',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3568,704733,2,703119,'652929000000','柯坪县','新疆,阿克苏,柯坪','79.047291','40.508340',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3569,704780,2,704779,'653001000000','阿图什市','新疆,克孜勒苏,阿图什','76.168400','39.716160',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3570,704893,2,704779,'653022000000','阿克陶县','新疆,克孜勒苏,阿克陶','75.962509','37.993697',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3571,705047,2,704779,'653023000000','阿合奇县','新疆,克孜勒苏,阿合奇','78.446253','40.936936',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3572,705084,2,704779,'653024000000','乌恰县','新疆,克孜勒苏,乌恰','76.167819','39.714526',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3573,705146,2,705145,'653101000000','喀什市','新疆,喀什,喀什','75.989755','39.470400',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3574,705344,2,705145,'653121000000','疏附县','新疆,喀什,疏附','75.862814','39.375044',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3575,705496,2,705145,'653122000000','疏勒县','新疆,喀什,疏勒','76.048139','39.401385',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3576,705764,2,705145,'653123000000','英吉沙县','新疆,喀什,英吉沙','76.175729','38.930382',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3577,705961,2,705145,'653124000000','泽普县','新疆,喀什,泽普','77.260103','38.184955',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3578,706133,2,705145,'653125000000','莎车县','新疆,喀什,莎车','77.245761','38.414217',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3579,706753,2,705145,'653126000000','叶城县','新疆,喀什,叶城','77.413836','37.882989',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3580,707143,2,705145,'653127000000','麦盖提县','新疆,喀什,麦盖提','77.610105','38.898666',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3581,707342,2,705145,'653128000000','岳普湖县','新疆,喀什,岳普湖','76.773163','39.224200',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3582,707464,2,705145,'653129000000','伽师县','新疆,喀什,伽师','76.723720','39.488182',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3583,707806,2,705145,'653130000000','巴楚县','新疆,喀什,巴楚','78.549297','39.785155',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3584,708055,2,705145,'653131000000','塔什库尔干塔吉克自治县','新疆,喀什,塔什库尔干','75.989755','39.470400',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3585,708118,2,708117,'653201000000','和田市','新疆,和田,和田','79.913534','37.112149',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3586,708305,2,708117,'653221000000','和田县','新疆,和田,和田','79.913534','37.112149',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3587,708528,2,708117,'653222000000','墨玉县','新疆,和田,墨玉','79.728841','37.277340',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3588,708940,2,708117,'653223000000','皮山县','新疆,和田,皮山','78.283669','37.621450',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3589,709155,2,708117,'653224000000','洛浦县','新疆,和田,洛浦','80.188986','37.073667',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3590,709393,2,708117,'653225000000','策勒县','新疆,和田,策勒','80.806159','36.998335',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3591,709538,2,708117,'653226000000','于田县','新疆,和田,于田','81.677418','36.857081',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3592,709746,2,708117,'653227000000','民丰县','新疆,和田,民丰','82.695862','37.064080',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3593,709793,2,709792,'654002000000','伊宁市','新疆,伊犁,伊宁','81.277950','43.908558',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3594,709978,2,709792,'654003000000','奎屯市','新疆,伊犁,奎屯','84.903267','44.426529',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3595,710057,2,709792,'654004000000','霍尔果斯市','新疆,伊犁,霍尔果斯','80.420759','44.201669',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3596,710090,2,709792,'654021000000','伊宁县','新疆,伊犁,伊宁','81.277950','43.908558',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3597,710275,2,709792,'654022000000','察布查尔锡伯自治县','新疆,伊犁,察布查尔','81.151337','43.840726',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3598,710410,2,709792,'654023000000','霍城县','新疆,伊犁,霍城','80.874181','44.053592',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3599,710612,2,709792,'654024000000','巩留县','新疆,伊犁,巩留','82.231718','43.482628',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3600,710730,2,709792,'654025000000','新源县','新疆,伊犁,新源','83.260770','43.429930',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3601,710868,2,709792,'654026000000','昭苏县','新疆,伊犁,昭苏','81.130975','43.157293',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3602,711013,2,709792,'654027000000','特克斯县','新疆,伊犁,特克斯','81.836206','43.217184',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3603,711105,2,709792,'654028000000','尼勒克县','新疆,伊犁,尼勒克','82.511810','43.800247',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3604,711219,2,711218,'654201000000','塔城市','新疆,塔城,塔城','82.978928','46.748523',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3605,711436,2,711218,'654202000000','乌苏市','新疆,塔城,乌苏','84.713736','44.418887',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3606,711820,2,711218,'654221000000','额敏县','新疆,塔城,额敏','83.628303','46.524673',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3607,712103,2,711218,'654223000000','沙湾县','新疆,塔城,沙湾','85.619416','44.326388',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3608,712601,2,711218,'654224000000','托里县','新疆,塔城,托里','83.606951','45.947638',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3609,712700,2,711218,'654225000000','裕民县','新疆,塔城,裕民','82.982668','46.201104',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3610,712777,2,711218,'654226000000','和布克赛尔蒙古自治县','新疆,塔城,和布克赛尔','85.738335','46.798895',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3611,712894,2,712893,'654301000000','阿勒泰市','新疆,阿勒泰,阿勒泰','88.131842','47.827309',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3612,713072,2,712893,'654321000000','布尔津县','新疆,阿勒泰,布尔津','86.874897','47.701850',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3613,713161,2,712893,'654322000000','富蕴县','新疆,阿勒泰,富蕴','89.525504','46.994115',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3614,713261,2,712893,'654323000000','福海县','新疆,阿勒泰,福海','87.486703','47.111919',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3615,713426,2,712893,'654324000000','哈巴河县','新疆,阿勒泰,哈巴河','86.418621','48.060846',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3616,713568,2,712893,'654325000000','青河县','新疆,阿勒泰,青河','90.382961','46.674205',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3617,713635,2,712893,'654326000000','吉木乃县','新疆,阿勒泰,吉木乃','85.874096','47.443101',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3618,713698,2,713697,'659001000000','石河子市','新疆,石河子','86.080460','44.305428',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3619,713842,2,713697,'659002000000','阿拉尔市','新疆,阿拉尔','81.280525','40.547653',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3620,714172,2,713697,'659003000000','图木舒克市','新疆,图木舒克','79.074089','39.868969',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3621,714310,2,713697,'659004000000','五家渠市','新疆,五家渠','87.543243','44.166756',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3622,714363,2,713697,'659006000000','铁门关市','新疆,铁门关','85.669533','41.863300',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3648,714403,2,714402,'0','芳苑乡','台湾,彰化,芳苑','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3649,714632,2,714402,'0','芬园乡','台湾,彰化,芬园','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3650,714701,2,714402,'0','福兴乡','台湾,彰化,福兴','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3651,714777,2,714402,'0','和美镇','台湾,彰化,和美','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3652,715055,2,714402,'0','花坛乡','台湾,彰化,花坛','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3653,715172,2,714402,'0','鹿港镇','台湾,彰化,鹿港','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3654,715490,2,714402,'0','埤头乡','台湾,彰化,埤头','120.464542','23.890392',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3655,715602,2,714402,'0','埔心乡','台湾,彰化,埔心','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3656,715745,2,714402,'0','埔盐乡','台湾,彰化,埔盐','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3657,715795,2,714402,'0','伸港乡','台湾,彰化,伸港','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3658,715960,2,714402,'0','社头乡','台湾,彰化,社头','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3659,716105,2,714402,'0','田尾乡','台湾,彰化,田尾','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3660,716202,2,714402,'0','田中镇','台湾,彰化,田中','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3661,716341,2,714402,'0','线西乡','台湾,彰化,线西','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3662,716421,2,714402,'0','溪湖镇','台湾,彰化,溪湖','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3663,716750,2,714402,'0','秀水乡','台湾,彰化,秀水','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3664,716874,2,714402,'0','溪州乡','台湾,彰化,溪州','120.492906','23.853578',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3665,717107,2,714402,'0','永靖乡','台湾,彰化,永靖','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3666,717238,2,714402,'0','员林市','台湾,彰化,员林市','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3667,717447,2,714402,'0','竹塘乡','台湾,彰化,竹塘','120.416000','24.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3668,717532,2,717531,'0','八里区','台湾,新北,八里区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3669,717645,2,717531,'0','板桥区','台湾,新北,板桥区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3670,717902,2,717531,'0','贡寮区','台湾,新北,贡寮区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3671,717955,2,717531,'0','金山区','台湾,新北,金山区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3672,718036,2,717531,'0','林口区','台湾,新北,林口区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3673,718195,2,717531,'0','芦洲区','台湾,新北,芦洲区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3674,718266,2,717531,'0','坪林区','台湾,新北,坪林区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3675,718327,2,717531,'0','平溪区','台湾,新北,平溪区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3676,718375,2,717531,'0','瑞芳区','台湾,新北,瑞芳区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3677,718490,2,717531,'0','三重区','台湾,新北,三重区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3678,718786,2,717531,'0','三峡区','台湾,新北,三峡区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3679,718879,2,717531,'0','三芝区','台湾,新北,三芝区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3680,718980,2,717531,'0','深坑区','台湾,新北,深坑区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3681,719023,2,717531,'0','石碇区','台湾,新北,石碇区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3682,719115,2,717531,'0','石门区','台湾,新北,石门区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3683,719155,2,717531,'0','双溪区','台湾,新北,双溪区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3684,719243,2,717531,'0','树林区','台湾,新北,树林区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3685,719382,2,717531,'0','泰山区','台湾,新北,泰山区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3686,719498,2,717531,'0','淡水区','台湾,新北,淡水区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3687,719731,2,717531,'0','土城区','台湾,新北,土城区','121.465746','25.012366',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3688,719869,2,719868,'0','白沙乡','台湾,澎湖,白沙','119.566417','23.569733',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3689,719890,2,719868,'0','湖西乡','台湾,澎湖,湖西','119.566417','23.569733',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3690,719916,2,719868,'0','马公市','台湾,澎湖,马公市','119.566417','23.569733',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3691,720065,2,719868,'0','七美乡','台湾,澎湖,七美','119.566417','23.569733',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3692,720090,2,719868,'0','望安乡','台湾,澎湖,望安','119.566417','23.569733',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3693,720102,2,719868,'0','西屿乡','台湾,澎湖,西屿','119.566417','23.569733',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3694,720119,2,720118,'0','三地门乡','台湾,屏东,三地门','120.487928','22.682802',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3695,720142,2,720118,'0','狮子乡','台湾,屏东,狮子','120.487928','22.682802',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3696,720163,2,720118,'0','泰武乡','台湾,屏东,泰武','120.626012','22.591307',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3697,720186,2,720118,'0','万丹乡','台湾,屏东,万丹','120.486423','22.588123',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3698,720415,2,720118,'0','万峦乡','台湾,屏东,万峦','120.566478','22.571966',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3699,720480,2,720118,'0','雾臺乡','台湾,屏东,雾臺','120.727653','22.743675',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3700,720502,2,720118,'0','新埤乡','台湾,屏东,新埤','120.545190','22.465998',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3701,720553,2,720118,'0','新园乡','台湾,屏东,新园','120.459758','22.544147',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3702,720649,2,720118,'0','盐埔乡','台湾,屏东,盐埔','120.487928','22.682802',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3703,720748,2,720118,'0','竹田乡','台湾,屏东,竹田','120.487928','22.682802',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3704,720835,2,720118,'0','长治乡','台湾,屏东,长治','120.487928','22.682802',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3705,720975,2,720118,'0','潮州镇','台湾,屏东,潮州','120.487928','22.682802',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3706,721293,2,720118,'0','车城乡','台湾,屏东,车城','120.707694','22.072115',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3707,721335,2,720118,'0','春日乡','台湾,屏东,春日','120.622000','22.368284',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3708,721344,2,720118,'0','东港镇','台湾,屏东,东港','120.487928','22.682802',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3709,721490,2,720118,'0','枋寮乡','台湾,屏东,枋寮','120.487928','22.682802',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3710,721617,2,720118,'0','枋山乡','台湾,屏东,枋山','120.647762','22.262550',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3711,721638,2,720118,'0','高树乡','台湾,屏东,高树','120.595945','22.825131',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3712,721805,2,720118,'0','恆春镇','台湾,屏东,恆春','120.487928','22.682802',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3713,721930,2,720118,'0','佳冬乡','台湾,屏东,佳冬','120.545370','22.417786',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3714,722025,2,722024,'0','梧栖区','台湾,臺中,梧栖区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3715,722212,2,722024,'0','乌日区','台湾,臺中,乌日区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3716,722402,2,722024,'0','新社区','台湾,臺中,新社区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3717,722474,2,722024,'0','西屯区','台湾,臺中,西屯区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3718,722699,2,722024,'0','北屯区','台湾,臺中,北屯区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3719,722879,2,722024,'0','中区','台湾,臺中,中区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3720,722923,2,722024,'0','大肚区','台湾,臺中,大肚区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3721,723021,2,722024,'0','大甲区','台湾,臺中,大甲区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3722,723211,2,722024,'0','大里区','台湾,臺中,大里区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3723,723592,2,722024,'0','大雅区','台湾,臺中,大雅区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3724,723756,2,722024,'0','大安区','台湾,臺中,大安区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3725,723802,2,722024,'0','东势区','台湾,臺中,东势区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3726,723966,2,722024,'0','东区','台湾,臺中,东区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3727,724148,2,722024,'0','丰原区','台湾,臺中,丰原区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3728,724424,2,722024,'0','和平区','台湾,臺中,和平区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3729,724504,2,722024,'0','后里区','台湾,臺中,后里区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3730,724656,2,722024,'0','龙井区','台湾,臺中,龙井区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3731,724797,2,722024,'0','南屯区','台湾,臺中,南屯区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3732,724872,2,722024,'0','北区','台湾,臺中,北区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3733,725199,2,722024,'0','清水区','台湾,臺中,清水区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3734,725489,2,725488,'0','佳里区','台湾,臺南,佳里区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3735,725588,2,725488,'0','将军区','台湾,臺南,将军区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3736,725620,2,725488,'0','六甲区','台湾,臺南,六甲区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3737,725679,2,725488,'0','柳营区','台湾,臺南,柳营区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3738,725795,2,725488,'0','龙崎区','台湾,臺南,龙崎区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3739,725841,2,725488,'0','麻豆区','台湾,臺南,麻豆区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3740,725927,2,725488,'0','南化区','台湾,臺南,南化区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3741,725938,2,725488,'0','楠西区','台湾,臺南,楠西区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3742,725973,2,725488,'0','北区','台湾,臺南,北区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3743,726300,2,725488,'0','七股区','台湾,臺南,七股区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3744,726338,2,725488,'0','仁德区','台湾,臺南,仁德区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3745,726539,2,725488,'0','善化区','台湾,臺南,善化区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3746,726675,2,725488,'0','山上区','台湾,臺南,山上区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3747,726691,2,725488,'0','南区','台湾,臺南,南区','120.679305','24.133453',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3748,727041,2,725488,'0','中西区','台湾,臺南,中西区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3749,727251,2,725488,'0','下营区','台湾,臺南,下营区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3750,727339,2,725488,'0','西港区','台湾,臺南,西港区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3751,727375,2,725488,'0','新化区','台湾,臺南,新化区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3752,727425,2,725488,'0','新市区','台湾,臺南,新市区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3753,727529,2,725488,'0','新营区','台湾,臺南,新营区','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3754,727731,2,727730,'0','北投区','台湾,臺北,北投区','121.517057','25.048074',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3755,727897,2,727730,'0','大同区','台湾,臺北,大同区','121.517057','25.048074',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3756,728070,2,727730,'0','大安区','台湾,臺北,大安区','121.517057','25.048074',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3757,728116,2,727730,'0','南港区','台湾,臺北,南港区','121.517057','25.048074',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3758,728220,2,727730,'0','内湖区','台湾,臺北,内湖区','121.517057','25.048074',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3759,728340,2,727730,'0','士林区','台湾,臺北,士林区','121.517057','25.048074',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3760,728550,2,727730,'0','松山区','台湾,臺北,松山区','121.517057','25.048074',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3761,728713,2,727730,'0','万华区','台湾,臺北,万华区','121.517057','25.048074',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3762,728920,2,727730,'0','文山区','台湾,臺北,文山区','121.517057','25.048074',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3763,729073,2,727730,'0','信义区','台湾,臺北,信义区','121.517057','25.048074',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3764,729277,2,727730,'0','中山区','台湾,臺北,中山区','121.517057','25.048074',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3765,729583,2,727730,'0','中正区','台湾,臺北,中正区','121.517057','25.048074',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3766,729929,2,729928,'0','卑南乡','台湾,臺东,卑南','121.117213','22.781744',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3767,729994,2,729928,'0','长滨乡','台湾,臺东,长滨','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3768,730033,2,729928,'0','成功镇','台湾,臺东,成功','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3769,730107,2,729928,'0','池上乡','台湾,臺东,池上','121.212999','23.123275',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3770,730196,2,729928,'0','达仁乡','台湾,臺东,达仁','120.878316','22.296142',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3771,730219,2,729928,'0','大武乡','台湾,臺东,大武','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3772,730268,2,729928,'0','东河乡','台湾,臺东,东河','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3773,730308,2,729928,'0','关山镇','台湾,臺东,关山','121.158084','23.047483',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3774,730384,2,729928,'0','海端乡','台湾,臺东,海端','121.172009','23.101079',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3775,730409,2,729928,'0','金峰乡','台湾,臺东,金峰','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3776,730416,2,729928,'0','兰屿乡','台湾,臺东,兰屿','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3777,730423,2,729928,'0','绿岛乡','台湾,臺东,绿岛','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3778,730438,2,729928,'0','鹿野乡','台湾,臺东,鹿野','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3779,730510,2,729928,'0','太麻里乡','台湾,臺东,太麻里','120.999365','22.610919',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3780,730565,2,729928,'0','臺东市','台湾,臺东,臺东市','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3781,730832,2,729928,'0','延平乡','台湾,臺东,延平','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3782,730844,2,730843,'0','八德区','台湾,桃园,八德区','121.083000','25.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3783,731212,2,730843,'0','大溪区','台湾,桃园,大溪区','121.083000','25.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3784,731471,2,730843,'0','大园区','台湾,桃园,大园区','121.083000','25.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3785,731767,2,730843,'0','復兴区','台湾,桃园,復兴区','121.083000','25.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3786,731835,2,730843,'0','观音区','台湾,桃园,观音区','121.083000','25.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3787,732079,2,730843,'0','龟山区','台湾,桃园,龟山区','121.083000','25.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3788,732469,2,730843,'0','龙潭区','台湾,桃园,龙潭区','121.083000','25.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3789,732800,2,730843,'0','芦竹区','台湾,桃园,芦竹区','121.083000','25.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3790,733144,2,730843,'0','平镇区','台湾,桃园,平区','121.083000','25.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3791,733179,2,730843,'0','桃园区','台湾,桃园,桃园区','121.083000','25.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3792,733390,2,730843,'0','新屋区','台湾,桃园,新屋区','121.083000','25.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3793,733537,2,730843,'0','杨梅区','台湾,桃园,杨梅区','121.083000','25.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3794,733876,2,730843,'0','中坜区','台湾,桃园,中坜区','121.083000','25.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3795,734180,2,734179,'0','大同乡','台湾,宜兰,大同','121.500000','24.600000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3796,734246,2,734179,'0','钓鱼臺','台湾,宜兰,钓鱼臺','121.500000','24.600000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3797,734248,2,734179,'0','冬山乡','台湾,宜兰,冬山','121.500000','24.600000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3798,734579,2,734179,'0','礁溪乡','台湾,宜兰,礁溪','121.500000','24.600000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3799,734681,2,734179,'0','罗东镇','台湾,宜兰,罗东','121.500000','24.600000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3800,734842,2,734179,'0','南澳乡','台湾,宜兰,南澳','121.500000','24.600000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3801,734865,2,734179,'0','三星乡','台湾,宜兰,三星','121.500000','24.600000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3802,735104,2,734179,'0','苏澳镇','台湾,宜兰,苏澳','121.500000','24.600000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3803,735319,2,734179,'0','头城镇','台湾,宜兰,头城','121.500000','24.600000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3804,735419,2,734179,'0','五结乡','台湾,宜兰,五结','121.796468','24.685615',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3805,735620,2,734179,'0','宜兰市','台湾,宜兰,宜兰市','121.500000','24.600000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3806,735851,2,734179,'0','员山乡','台湾,宜兰,员山','121.500000','24.600000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3807,735970,2,734179,'0','壮围乡','台湾,宜兰,壮围','121.500000','24.600000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3808,736052,2,736051,'0','草屯镇','台湾,南投,草屯','120.830000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3809,736305,2,736051,'0','国姓乡','台湾,南投,国姓','120.830000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3810,736356,2,736051,'0','集集镇','台湾,南投,集集','120.830000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3811,736449,2,736051,'0','鹿谷乡','台湾,南投,鹿谷','120.830000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3812,736522,2,736051,'0','名间乡','台湾,南投,名间','120.830000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3813,736622,2,736051,'0','南投市','台湾,南投,南投市','120.830000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3814,736887,2,736051,'0','埔里镇','台湾,南投,埔里','120.830000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3815,737266,2,736051,'0','仁爱乡','台湾,南投,仁爱','120.830000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3816,737337,2,736051,'0','水里乡','台湾,南投,水里','120.830000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3817,737496,2,736051,'0','信义乡','台湾,南投,信义','120.830000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3818,737533,2,736051,'0','鱼池乡','台湾,南投,鱼池','120.830000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3819,737591,2,736051,'0','中寮乡','台湾,南投,中寮','120.830000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3820,737625,2,736051,'0','竹山镇','台湾,南投,竹山','120.830000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3821,737857,2,737856,'0','东沙群岛','台湾,南海岛,东沙群岛','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3822,737859,2,737856,'0','南沙群岛','台湾,南海岛,南沙群岛','0.000000','0.000000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3823,737862,2,737861,'0','头屋乡','台湾,苗栗,头屋','120.818985','24.561601',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3824,737894,2,737861,'0','西湖乡','台湾,苗栗,西湖','120.743700','24.556610',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3825,737948,2,737861,'0','苑里镇','台湾,苗栗,苑里','120.818985','24.561601',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3826,738050,2,737861,'0','造桥乡','台湾,苗栗,造桥','120.818985','24.561601',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3827,738158,2,737861,'0','竹南镇','台湾,苗栗,竹南','120.872636','24.685510',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3828,738454,2,737861,'0','卓兰镇','台湾,苗栗,卓兰','120.823440','24.309510',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3829,738528,2,737861,'0','大湖乡','台湾,苗栗,大湖','120.863640','24.422548',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3830,738619,2,737861,'0','公馆乡','台湾,苗栗,公馆','120.818985','24.561601',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3831,738695,2,737861,'0','后龙镇','台湾,苗栗,后龙','120.786474','24.612613',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3832,738882,2,737861,'0','苗栗市','台湾,苗栗,苗栗市','120.819288','24.561582',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3833,739250,2,737861,'0','南庄乡','台湾,苗栗,南庄','120.818985','24.561601',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3834,739302,2,737861,'0','三湾乡','台湾,苗栗,三湾','120.818985','24.561601',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3835,739369,2,737861,'0','三义乡','台湾,苗栗,三义','120.765515','24.413037',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3836,739419,2,737861,'0','狮潭乡','台湾,苗栗,狮潭','120.918024','24.540004',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3837,739465,2,737861,'0','泰安乡','台湾,苗栗,泰安','120.818985','24.561601',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3838,739487,2,737861,'0','铜锣乡','台湾,苗栗,铜锣','120.786475','24.489502',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3839,739564,2,737861,'0','通霄镇','台湾,苗栗,通霄','120.676696','24.489084',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3840,739642,2,737861,'0','头份市','台湾,苗栗,头份市','120.818985','24.561601',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3841,739958,2,739957,'0','东区','台湾,嘉义,东区','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3842,740140,2,739957,'0','西区','台湾,嘉义,西区','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3843,740511,2,740510,'0','阿里山乡','台湾,嘉义,阿里山','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3844,740536,2,740510,'0','布袋镇','台湾,嘉义,布袋','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3845,740625,2,740510,'0','大林镇','台湾,嘉义,大林','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3846,740746,2,740510,'0','大埔乡','台湾,嘉义,大埔','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3847,740792,2,740510,'0','东石乡','台湾,嘉义,东石','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3848,740845,2,740510,'0','番路乡','台湾,嘉义,番路','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3849,740943,2,740510,'0','六脚乡','台湾,嘉义,六脚','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3850,740975,2,740510,'0','鹿草乡','台湾,嘉义,鹿草','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3851,741010,2,740510,'0','梅山乡','台湾,嘉义,梅山','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3852,741137,2,740510,'0','民雄乡','台湾,嘉义,民雄','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3853,741312,2,740510,'0','朴子市','台湾,嘉义,朴子市','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3854,741451,2,740510,'0','水上乡','台湾,嘉义,水上','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3855,741550,2,740510,'0','太保市','台湾,嘉义,太保市','120.332737','23.459115',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3856,741646,2,740510,'0','溪口乡','台湾,嘉义,溪口','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3857,741688,2,740510,'0','新港乡','台湾,嘉义,新港','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3858,741750,2,740510,'0','义竹乡','台湾,嘉义,义竹','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3859,741785,2,740510,'0','中埔乡','台湾,嘉义,中埔','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3860,741936,2,740510,'0','竹崎乡','台湾,嘉义,竹崎','120.452538','23.481568',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3861,742127,2,742126,'0','东区','台湾,新竹,东区','120.973544','24.805226',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3862,742309,2,742126,'0','北区','台湾,新竹,北区','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3863,742637,2,742636,'0','峨眉乡','台湾,新竹,峨眉','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3864,742674,2,742636,'0','关西镇','台湾,新竹,关西','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3865,742797,2,742636,'0','横山乡','台湾,新竹,横山','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3866,742852,2,742636,'0','湖口乡','台湾,新竹,湖口','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3867,743201,2,742636,'0','尖石乡','台湾,新竹,尖石','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3868,743246,2,742636,'0','芎林乡','台湾,新竹,芎林','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3869,743298,2,742636,'0','五峰乡','台湾,新竹,五峰','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3870,743319,2,742636,'0','新丰乡','台湾,新竹,新丰','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3871,743414,2,742636,'0','新埔镇','台湾,新竹,新埔','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3872,743527,2,742636,'0','竹北市','台湾,新竹,竹北市','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3873,743565,2,742636,'0','竹东镇','台湾,新竹,竹东','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3874,743725,2,742636,'0','宝山乡','台湾,新竹,宝山','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3875,743888,2,742636,'0','北埔乡','台湾,新竹,北埔','120.968798','24.806738',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3876,743939,2,743938,'0','卓溪乡','台湾,花莲,卓溪','121.301890','23.344908',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3877,743956,2,743938,'0','丰滨乡','台湾,花莲,丰滨','121.300000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3878,743993,2,743938,'0','凤林镇','台湾,花莲,凤林','121.300000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3879,744128,2,743938,'0','富里乡','台湾,花莲,富里','121.244694','23.175468',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3880,744185,2,743938,'0','光復乡','台湾,花莲,光復','121.300000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3881,744246,2,743938,'0','花莲市','台湾,花莲,花莲市','121.606927','23.981993',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3882,744625,2,743938,'0','吉安乡','台湾,花莲,吉安','121.300000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3883,745050,2,743938,'0','瑞穗乡','台湾,花莲,瑞穗','121.373373','23.496080',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3884,745196,2,743938,'0','寿丰乡','台湾,花莲,寿丰','121.506030','23.869774',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3885,745354,2,743938,'0','万荣乡','台湾,花莲,万荣','121.300000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3886,745363,2,743938,'0','新城乡','台湾,花莲,新城','121.604120','24.039243',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3887,745486,2,743938,'0','秀林乡','台湾,花莲,秀林','121.300000','23.830000',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3888,745532,2,743938,'0','玉里镇','台湾,花莲,玉里','121.312109','23.334236',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3889,745675,2,745674,'0','阿莲区','台湾,高雄,阿莲区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3890,745715,2,745674,'0','大寮区','台湾,高雄,大寮区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3891,746083,2,745674,'0','大社区','台湾,高雄,大社区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3892,746199,2,745674,'0','大树区','台湾,高雄,大树区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3893,746294,2,745674,'0','凤山区','台湾,高雄,凤山区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3894,746624,2,745674,'0','冈山区','台湾,高雄,冈山区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3895,746906,2,745674,'0','鼓山区','台湾,高雄,鼓山区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3896,747053,2,745674,'0','湖内区','台湾,高雄,湖内区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3897,747108,2,745674,'0','甲仙区','台湾,高雄,甲仙区','120.587980','23.083957',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3898,747150,2,745674,'0','苓雅区','台湾,高雄,苓雅区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3899,747342,2,745674,'0','林园区','台湾,高雄,林园区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3900,747481,2,745674,'0','六龟区','台湾,高雄,六龟区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3901,747536,2,745674,'0','路竹区','台湾,高雄,路竹区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3902,747643,2,745674,'0','茂林区','台湾,高雄,茂林区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3903,747647,2,745674,'0','美浓区','台湾,高雄,美浓区','120.542419','22.894882',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3904,747764,2,745674,'0','弥陀区','台湾,高雄,弥陀区','120.250672','22.781561',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3905,747894,2,745674,'0','那玛夏区','台湾,高雄,那玛夏区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3906,747902,2,745674,'0','楠梓区','台湾,高雄,楠梓区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3907,748258,2,745674,'0','内门区','台湾,高雄,内门区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3908,748344,2,745674,'0','鸟松区','台湾,高雄,鸟松区','120.311922','22.620856',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3909,748554,2,748553,'0','安乐区','台湾,基隆,安乐区','121.746248','25.130741',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3910,748581,2,748553,'0','暖暖区','台湾,基隆,暖暖区','121.746248','25.130741',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3911,748599,2,748553,'0','七堵区','台湾,基隆,七堵区','121.746248','25.130741',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3912,748670,2,748553,'0','仁爱区','台湾,基隆,仁爱区','121.746248','25.130741',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3913,748716,2,748553,'0','信义区','台湾,基隆,信义区','121.746248','25.130741',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3914,748920,2,748553,'0','中山区','台湾,基隆,中山区','121.746248','25.130741',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3915,749226,2,748553,'0','中正区','台湾,基隆,中正区','121.768000','25.151647',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3916,749572,2,749571,'0','金城镇','台湾,金门,金城','118.317089','24.432706',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3917,749647,2,749571,'0','金湖镇','台湾,金门,金湖','118.317089','24.432706',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3918,749752,2,749571,'0','金宁乡','台湾,金门,金宁','118.317089','24.432706',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3919,749810,2,749571,'0','金沙镇','台湾,金门,金沙','118.317089','24.432706',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3920,749894,2,749571,'0','烈屿乡','台湾,金门,烈屿','118.317089','24.432706',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3921,749928,2,749571,'0','乌坵乡','台湾,金门,乌坵','118.317089','24.432706',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3922,749931,2,749930,'0','北竿乡','台湾,连江,北竿','119.539704','26.197364',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3923,749938,2,749930,'0','东引乡','台湾,连江,东引','119.539704','26.197364',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3924,749941,2,749930,'0','莒光乡','台湾,连江,莒光','119.539704','26.197364',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3925,749947,2,749930,'0','南竿乡','台湾,连江,南竿','119.539704','26.197364',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3926,749958,2,749957,'0','褒忠乡','台湾,云林,褒忠','120.309069','23.695652',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3927,749991,2,749957,'0','北港镇','台湾,云林,北港','120.296759','23.572428',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3928,750170,2,749957,'0','莿桐乡','台湾,云林,莿桐','120.497033','23.757251',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3929,750218,2,749957,'0','大埤乡','台湾,云林,大埤','120.527173','23.696887',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3930,750291,2,749957,'0','东势乡','台湾,云林,东势','120.527173','23.696887',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3931,750363,2,749957,'0','斗六市','台湾,云林,斗六市','120.527173','23.696887',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3932,750795,2,749957,'0','斗南镇','台湾,云林,斗南','120.527173','23.696887',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3933,751009,2,749957,'0','二崙乡','台湾,云林,二崙','120.527173','23.696887',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3934,751071,2,749957,'0','古坑乡','台湾,云林,古坑','120.558553','23.644734',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3935,751147,2,749957,'0','虎尾镇','台湾,云林,虎尾','120.429231','23.707796',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3936,751400,2,749957,'0','口湖乡','台湾,云林,口湖','120.178640','23.585506',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3937,751493,2,749957,'0','林内乡','台湾,云林,林内','120.527173','23.696887',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3938,751555,2,749957,'0','崙背乡','台湾,云林,崙背','120.527173','23.696887',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3939,751674,2,749957,'0','麦寮乡','台湾,云林,麦寮','120.527173','23.696887',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3940,751764,2,749957,'0','水林乡','台湾,云林,水林','120.241228','23.571067',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3941,751832,2,749957,'0','四湖乡','台湾,云林,四湖','120.220781','23.635426',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3942,751907,2,749957,'0','臺西乡','台湾,云林,臺西','120.196139','23.702821',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3943,751956,2,749957,'0','土库镇','台湾,云林,土库','120.527173','23.696887',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3944,752034,2,749957,'0','西螺镇','台湾,云林,西螺','120.457123','23.797412',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3945,752149,2,749957,'0','元长乡','台湾,云林,元长','120.311052','23.649577',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3946,752150,1,714368,'','香港特别行政区','香港特别行政区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3947,752151,2,752150,'','中西区','中西区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3948,752152,2,752150,'','东区','东区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3949,752153,2,752150,'','九龙城区','九龙城区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3950,752154,2,752150,'','观塘区','香港,九龙,观塘','114.231268','22.309430',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3951,752155,2,752150,'','南区','香港,香港岛,南区','114.174134','22.246760',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3953,752156,2,752150,'','深水埗区','香港特别行政区,香港特别行政区,深水埗区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3954,752157,2,752150,'','湾仔区','湾仔区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3955,752158,2,752150,'','黄大仙区','黄大仙区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3956,752159,2,752150,'','油尖旺区','油尖旺区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3957,752160,2,752150,'','离岛区','离岛区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3958,752161,2,752150,'','葵青区','葵青区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3959,752162,2,752150,'','北区','北区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3960,752163,2,752150,'','西贡区','西贡区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3961,752164,2,752150,'','沙田区','沙田区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3962,752165,2,752150,'','屯门区','屯门区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3963,752166,2,752150,'','大埔区','大埔区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3964,752167,2,752150,'','荃湾区','荃湾区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3965,752168,2,752150,'','元朗区','元朗区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3966,752169,1,714390,'','澳门特别行政区','澳门特别行政区','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3967,752170,2,752169,'','澳门半岛','澳门半岛','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3968,752171,2,752169,'','凼仔','凼仔','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3969,752172,2,752169,'','路凼城','路凼城','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'), (3970,752173,2,752169,'','路环','路环','','',1,'2020-04-17 14:28:09','2020-04-17 14:28:25'); /*!40000 ALTER TABLE `eb_system_city` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_system_config # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_config`; CREATE TABLE `eb_system_config` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '配置id', `name` varchar(255) NOT NULL DEFAULT '' COMMENT '字段名称', `title` varchar(255) NOT NULL DEFAULT '' COMMENT '字段提示文字', `form_id` int(10) DEFAULT '0' COMMENT '表单id', `value` varchar(5000) DEFAULT '' COMMENT '值', `status` tinyint(1) DEFAULT '0' COMMENT '是否隐藏', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `status+name` (`name`), KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='配置表'; LOCK TABLES `eb_system_config` WRITE; /*!40000 ALTER TABLE `eb_system_config` DISABLE KEYS */; INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (173,'seo_title','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (177,'close_system','',0,'0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (178,'wechat_appid','wechat_appid',65,'wx009a1974eb2a76b811',0,'2020-05-14 15:20:25','2020-08-11 20:23:31'), (179,'wechat_appsecret','wechat_appsecret',65,'adb3deca7e583eb94842f12766a32ed1111',0,'2020-05-14 15:20:25','2020-08-12 12:38:53'), (180,'wechat_token','',65,'weixin',0,'2020-05-14 15:20:25','2020-08-11 20:23:46'), (181,'wechat_encode','',65,'qOOBXmmpkQbSMWWLfmLZgcJwCTCjHWSugCAuPyLFIww111',0,'2020-05-14 15:20:25','2020-06-01 16:55:51'), (182,'wechat_encodingaeskey','',65,'98yPmoktYopshbdthXzcTNkelaypLaXrNJutDSaIbM8111',0,'2020-05-14 15:20:25','2020-08-11 20:23:47'), (183,'wechat_share_img','',65,'',0,'2020-05-14 15:20:25','2020-06-01 16:55:53'), (184,'wechat_qrcode','',65,'',0,'2020-05-14 15:20:25','2020-06-01 16:55:54'), (185,'wechat_type','',65,'0',0,'2020-05-14 15:20:25','2020-06-01 16:55:57'), (186,'wechat_share_title','',65,'CRMEB',0,'2020-05-14 15:20:25','2020-06-01 16:55:55'), (187,'wechat_share_synopsis','',65,'CRMEB',0,'2020-05-14 15:20:25','2020-06-01 16:55:55'), (195,'store_postage','',0,'0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (202,'main_business','',0,' IT\\u79d1\\u6280 \\u4e92\\u8054\\u7f51|\\u7535\\u5b50\\u5546\\u52a1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (203,'vice_business','',0,'IT\\u79d1\\u6280 IT\\u8f6f\\u4ef6\\u4e0e\\u670d\\u52a1 ',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (204,'store_brokerage_rate_1','',0,'80',0,'2020-05-14 15:20:25','2020-07-14 16:44:50'), (205,'user_extract_min_price','',0,'100',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (206,'sx_sign_min_int','',0,'1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (207,'sx_sign_max_int','',0,'5',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (208,'about_us','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (209,'replenishment_num','',0,'20',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (212,'api','',0,'\\/api\\/wechat\\/serve',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (217,'stor_reason','',0,'\\u6536\\u8d27\\u5730\\u5740\\u586b\\u9519\\u4e86\\r\\n\\u4e0e\\u63cf\\u8ff0\\u4e0d\\u7b26\\r\\n\\u4fe1\\u606f\\u586b\\u9519\\u4e86\\uff0c\\u91cd\\u65b0\\u62cd\\r\\n\\u6536\\u5230\\u5546\\u54c1\\u635f\\u574f\\u4e86\\r\\n\\u672a\\u6309\\u9884\\u5b9a\\u65f6\\u95f4\\u53d1\\u8d27\\r\\n\\u5176\\u5b83\\u539f\\u56e0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (218,'store_brokerage_rate_2','',0,'60',0,'2020-05-14 15:20:25','2020-07-14 16:44:54'), (219,'store_brokerage_status','store_brokerage_status',0,'1',0,'2020-05-14 15:20:25','2020-08-05 17:42:38'), (226,'wechat_avatar','',65,'',0,'2020-05-14 15:20:25','2020-06-01 16:55:51'), (227,'user_extract_bank','',0,'中国银行\\n工商银行\\n建设银行',0,'2020-05-14 15:20:25','2020-06-09 17:43:00'), (228,'fast_number','',0,'10',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (229,'bast_number','',0,'10',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (230,'first_number','',0,'10',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (231,'routine_index_logo','',0,'http:\\/\\/kaifa.crmeb.net\\/uploads\\/attach\\/2019\\/08\\/20190801\\/deb30359d22c0b80f3cece86cb462104.png',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (232,'upload_type','',0,'4',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (233,'uploadUrl','',0,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com',0,'2020-05-14 15:20:25','2020-06-03 17:20:22'), (234,'accessKey','',0,'AKIDylJg18LnKgogJWBCftWwAASZR12312312313QMdYsQ',0,'2020-05-14 15:20:25','2020-06-03 17:20:54'), (235,'secretKey','',0,'SebIWXNxtpTs3bv0ps123213jKgmbEeqKckC4i',0,'2020-05-14 15:20:25','2020-06-03 17:21:02'), (236,'storage_name','',0,'wuht-13009031231239283',0,'2020-05-14 15:20:25','2020-06-03 17:21:18'), (237,'order_cancel_time','',0,'0.1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (238,'order_activity_time','',0,'2',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (239,'order_bargain_time','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (240,'order_seckill_time','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (241,'order_pink_time','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (242,'storage_region','',0,'ap-chengdu',0,'2020-05-14 15:20:25','2020-06-03 17:37:19'), (243,'vip_open','',0,'1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (244,'new_order_audio_link','',0,'\\/public\\/uploads\\/config\\/file\\/5cedd83eedba2.mp3',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (245,'system_delivery_time','',0,'1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (249,'offline_pay_status','',0,'2',0,'2020-05-14 15:20:25','2020-08-12 22:12:56'), (250,'news_slides_limit','',0,'5',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (251,'recharge_switch','',0,'1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (254,'cache_config','',0,'86400',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (256,'develop_id','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (257,'printing_api_key','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (258,'printing_client_id','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (259,'terminal_number','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (260,'lowerOrderSwitch','',0,'0',0,'2020-05-14 15:20:25','2020-06-17 09:34:54'), (261,'deliverGoodsSwitch','',0,'0',0,'2020-05-14 15:20:25','2020-06-17 09:34:43'), (262,'confirmTakeOverSwitch','',0,'0',0,'2020-05-14 15:20:25','2020-06-17 09:34:31'), (263,'adminLowerOrderSwitch','',0,'0',0,'2020-05-14 15:20:25','2020-06-17 09:33:32'), (264,'adminPaySuccessSwitch','',0,'0',0,'2020-05-14 15:20:25','2020-06-17 09:33:46'), (265,'adminRefundSwitch','',0,'0',0,'2020-05-14 15:20:25','2020-06-17 09:33:47'), (266,'adminConfirmTakeOverSwitch','',0,'0',0,'2020-05-14 15:20:25','2020-06-17 09:33:53'), (267,'new_goods_bananr','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (269,'extract_time','',0,'30',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (270,'store_brokerage_price','',0,'1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (271,'priceRevisionSwitch','',0,'0',0,'2020-05-14 15:20:25','2020-06-17 09:34:29'), (272,'promotion_number','',0,'3',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (273,'image_ext_str','',0,'jpg,jpeg,gif,png,bmp',0,'2020-05-14 15:20:25','2020-06-16 17:10:08'), (274,'image_max_size','',0,'2',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (275,'file_ext_str','',0,'zip,doc,docx,xls,pdf,mp3,wma,wav,amr,mp4',0,'2020-05-14 15:20:25','2020-06-16 17:09:42'), (276,'file_max_size','',0,'20',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (277,'upload_root_path','',0,'/www/wwwroot/api.java.crmeb.net/',0,'2020-05-14 15:20:25','2020-06-16 17:53:47'), (278,'form-1','',0,'{\n \"id\": 278,\n \"item\": [\n {\n \"name\": \"form-1-name\",\n \"value\": \"form-1-value\"\n },\n {\n \"name\": \"form-1-name1\",\n \"value\": \"form-1-value1\"\n }\n ]\n}',0,'2020-05-14 16:57:27','2020-05-14 17:07:04'), (644,'importProductToken','',0,'A5E94A9B7EBEBE9BB305680C0EE23885',0,'2020-06-04 17:25:19','2020-06-04 17:25:48'), (645,'inportProductTB','',0,'https://api03.6bqb.com/taobao/detail',0,'2020-06-05 14:35:08','2020-06-05 17:32:46'), (646,'inportProductJD','',0,'https://api03.6bqb.com/jd/detail',0,'2020-06-05 14:35:34','2020-06-05 17:33:02'), (647,'inportProductSN','',0,'https://api03.6bqb.com/suning/detail',0,'2020-06-05 14:35:41','2020-06-05 17:33:20'), (648,'inportProductPDD','',0,'https://api03.6bqb.com/pdd/detail',0,'2020-06-05 14:36:20','2020-06-05 17:33:35'), (649,'inportProductTM','',0,'https://api03.6bqb.com/tmall/detail',0,'2020-06-09 14:24:32','2020-06-09 14:25:21'), (657,'sms_account','',0,'tangkai',0,'2020-06-16 12:17:29','2020-06-16 12:17:29'), (658,'sms_token','',0,'Honor.327677cremb',0,'2020-06-16 12:17:35','2020-06-16 12:17:35'), (671,'uploadType','',0,'4',0,'2020-06-18 17:47:33','2020-06-18 17:47:33'), (843,'localUploadUrl','localUploadUrl',108,'1111',0,'2020-06-19 11:50:19','2020-06-19 11:50:19'), (844,'qnUploadUrl','qnUploadUrl',82,'https://wuht.s3-cn-east-1.qiniucs.com',0,'2020-06-19 11:50:29','2020-06-19 11:50:29'), (845,'qnAccessKey','qnAccessKey',82,'2CdCKYsRcw8dkYSOs6123Z92NpDmLdLWnApM4OyCi123123m6',0,'2020-06-19 11:50:29','2020-06-19 11:50:29'), (846,'qnSecretKey','qnSecretKey',82,'PRUPTTIuVlUZBO4Oj0I_1HeVYg1234loRDU3u6C1232131315ufj',0,'2020-06-19 11:50:29','2020-06-19 11:50:29'), (847,'qnStorageName','qnStorage134123Name',82,'w312312uht',0,'2020-06-19 11:50:29','2020-06-19 11:50:29'), (848,'qnStorageRegion','qnStorageRegion',82,'qiniu.zone.Zone_z0',0,'2020-06-19 11:50:30','2020-06-19 11:50:30'), (849,'alUploadUrl','alUploadUrl',81,'https://wuht.oss-cn-beijing.aliyuncs.com',0,'2020-06-19 11:52:52','2020-06-19 11:52:52'), (850,'alAccessKey','alAccessKey',81,'312312312',0,'2020-06-19 11:52:52','2020-06-19 11:52:52'), (851,'alSecretKey','alSecretKey',81,'rGSzZPt2yseQIBL1CdjMiZrm312312312pADTGg',0,'2020-06-19 11:52:52','2020-06-19 11:52:52'), (852,'alStorageName','alStorageName',81,'wuh1231231t',0,'2020-06-19 11:52:52','2020-06-19 11:52:52'), (853,'alStorageRegion','alStorageRegion',81,'oss-cn-beijing',0,'2020-06-19 11:52:52','2020-06-19 11:52:52'), (985,'member_func_status','member_func_status',0,'0',0,'2020-07-07 15:03:59','2020-07-07 15:03:59'), (986,'member_price_status','member_price_status',0,'0',0,'2020-07-07 15:04:10','2020-07-07 15:04:10'), (988,'integralRatio','integralRatio',0,'0',0,'2020-07-08 15:21:59','2020-08-10 21:27:45'), (989,'balance_func_status','balance_func_status',0,'1',0,'2020-07-09 10:09:33','2020-07-14 19:02:16'), (990,'yue_pay_status','yue_pay_status',0,'1',0,'2020-07-09 10:09:53','2020-07-14 19:02:38'), (991,'brokerage_func_status','brokerage_func_status',0,'1',0,'2020-07-21 10:42:36','2020-07-21 10:42:36'), (992,'store_brokerage_ratio','store_brokerage_ratio',0,'1',0,'2020-07-21 10:45:10','2020-07-21 10:45:10'), (993,'store_brokerage_two','store_brokerage_two',0,'1',0,'2020-07-21 10:45:41','2020-07-21 10:45:41'), (994,'brokerage_bindind','brokerage_bindind',0,'0',0,'2020-07-21 15:29:25','2020-07-21 15:29:25'), (1167,'txUploadUrl','txUploadUrl',83,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com',0,'2020-08-10 11:05:59','2020-08-10 11:05:59'), (1168,'txAccessKey','txAccessKey',83,'AKIDylJg18LnKgogJWBCftWwAASZR3QMdYsQ',0,'2020-08-10 11:05:59','2020-08-10 11:05:59'), (1169,'txSecretKey','txSecretKey',83,'SebIWXNxtpTs3bv0psjKgmbEeqKckC4i',0,'2020-08-10 11:05:59','2020-08-10 11:05:59'), (1170,'txStorageName','txStorageName',83,'wuht-1300909283',0,'2020-08-10 11:05:59','2020-08-10 11:05:59'), (1171,'txStorageRegion','txStorageRegion',83,'ap-chengdu',0,'2020-08-10 11:05:59','2020-08-10 11:05:59'), (1198,'test','test',112,'8888888888',0,'2020-08-10 22:10:52','2020-08-10 22:10:52'), (1199,'field129','field129',112,'image/product/2020/07/24/b3cea3fa87744102a500cc334ca10e62slwtoj09n7.jpg',0,'2020-08-10 22:10:52','2020-08-10 22:10:52'), (1200,'field130','field130',112,'image/product/2020/06/04/44d42e784ec845c3a700c6be5da7852a.png',0,'2020-08-10 22:10:52','2020-08-10 22:10:52'), (1201,'field132','field132',112,'[{\"attId\":2487,\"name\":\"765f540742a24380bc57e749ea1fd244r1m89e342q.png\",\"attDir\":\"/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/765f540742a24380bc57e749ea1fd244r1m89e342q.png\",\"sattDir\":\"image/product/2020/07/30/765f540742a24380bc57e749ea1fd244r1m89e342q.png\",\"attSize\":\"3428\",\"attType\":\"image/png\",\"pid\":0,\"imageType\":4,\"createTime\":\"2020-07-30 10:00:09\",\"updateTime\":\"2020-07-30 10:00:45\",\"isSelect\":true},{\"attId\":2486,\"name\":\"47aaa9df468b46ee968eb9d10de3e447v9jc8xim6q.jpg\",\"attDir\":\"/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/47aaa9df468b46ee968eb9d10de3e447v9jc8xim6q.jpg\",\"sattDir\":\"image/product/2020/07/30/47aaa9df468b46ee968eb9d10de3e447v9jc8xim6q.jpg\",\"attSize\":\"71811\",\"attType\":\"image/jpeg\",\"pid\":0,\"imageType\":4,\"createTime\":\"2020-07-30 09:51:15\",\"updateTime\":\"2020-07-30 09:51:45\",\"isSelect\":true},{\"attId\":2485,\"name\":\"398c165115c247ba8ae79fc5cade8226tpf3ap2and.png\",\"attDir\":\"/www/wwwroot/api.java.crmeb.net/image/product/2020/07/29/398c165115c247ba8ae79fc5cade8226tpf3ap2and.png\",\"sattDir\":\"image/product/2020/07/29/398c165115c247ba8ae79fc5cade8226tpf3ap2and.png\",\"attSize\":\"24056\",\"attType\":\"image/png\",\"pid\":0,\"imageType\":4,\"createTime\":\"2020-07-29 11:29:19\",\"updateTime\":\"2020-07-29 11:29:56\",\"isSelect\":true},{\"attId\":2488,\"name\":\"8b295cb6c6534c69aefae4ec4a2982c6jymrv5h9g4.png\",\"attDir\":\"/www/wwwroot/api.java.crmeb.net/image/product/2020/07/30/8b295cb6c6534c69aefae4ec4a2982c6jymrv5h9g4.png\",\"sattDir\":\"image/product/2020/07/30/8b295cb6c6534c69aefae4ec4a2982c6jymrv5h9g4.png\",\"attSize\":\"740512\",\"attType\":\"image/png\",\"pid\":0,\"imageType\":4,\"createTime\":\"2020-07-30 10:02:39\",\"updateTime\":\"2020-07-30 10:02:46\",\"isSelect\":true},{\"attId\":2484,\"name\":\"4eb06f6af8c04b10b51b7875f1579a9dkqllknvfwz.jpg\",\"attDir\":\"/www/wwwroot/api.java.crmeb.net/image/product/2020/07/29/4eb06f6af8c04b10b51b7875f1579a9dkqllknvfwz.jpg\",\"sattDir\":\"image/product/2020/07/29/4eb06f6af8c04b10b51b7875f1579a9dkqllknvfwz.jpg\",\"attSize\":\"37380\",\"attType\":\"image/jpeg\",\"pid\":0,\"imageType\":4,\"createTime\":\"2020-07-29 11:19:39\",\"updateTime\":\"2020-07-29 11:19:56\",\"isSelect\":true}]',0,'2020-08-10 22:10:52','2020-08-10 22:10:52'), (1202,'field137','field137',112,'

啦啦啦

',0,'2020-08-10 22:10:52','2020-08-10 22:10:52'), (1203,'field116','field116',112,'image/operation/2020/07/31/4a2f1c2d4f5443ecb2d7aff988ed7016hyczr0wna1.mp3',0,'2020-08-10 22:10:52','2020-08-10 22:10:52'), (1398,'fastNumber','fastNumber',69,'-4',0,'2020-08-12 11:12:35','2020-08-12 11:12:35'), (1399,'fastInfo','fastInfo',69,'快速选择分类简介',0,'2020-08-12 11:12:35','2020-08-12 11:12:35'), (1400,'bastNumber','bastNumber',69,'3',0,'2020-08-12 11:12:35','2020-08-12 11:12:35'), (1401,'bastInfo','bastInfo',69,'精品推荐简介',0,'2020-08-12 11:12:35','2020-08-12 11:12:35'), (1402,'firstNumber','firstNumber',69,'3',0,'2020-08-12 11:12:35','2020-08-12 11:12:35'), (1403,'firstInfo','firstInfo',69,'首发新品简介',0,'2020-08-12 11:12:35','2020-08-12 11:12:35'), (1404,'promotionNumber','promotionNumber',69,'3',0,'2020-08-12 11:12:35','2020-08-12 11:12:35'), (1405,'salesInfo','salesInfo',69,'促销单品简介',0,'2020-08-12 11:12:35','2020-08-12 11:12:35'), (1460,'field103','field103',118,'1111',0,'2020-08-12 11:30:48','2020-08-12 11:30:48'), (1466,'field101','field101',75,'‘1’',0,'2020-08-12 11:31:45','2020-08-12 11:31:45'), (1467,'field102','field102',75,'1',0,'2020-08-12 11:31:45','2020-08-12 11:31:45'), (1468,'field103','field103',75,'1',0,'2020-08-12 11:31:45','2020-08-12 11:31:45'), (1469,'field104','field104',75,'1',0,'2020-08-12 11:31:45','2020-08-12 11:31:45'), (1470,'field105','field105',75,'1',0,'2020-08-12 11:31:45','2020-08-12 11:31:45'), (1500,'store_free_postage','store_free_postage',74,'99999',0,'2020-08-12 12:27:11','2020-08-12 12:27:11'), (1501,'offline_postage','offline_postage',74,'true',0,'2020-08-12 12:27:11','2020-08-12 12:27:11'), (1502,'system_express_app_code','system_express_app_code',74,'b8f284e502674ed4869729512df08fb1',0,'2020-08-12 12:27:11','2020-08-12 12:27:11'), (1503,'tengxun_map_key','tengxun_map_key',74,'SMJBZ-WCHK4-ZPZUA-DSIXI-XDDVQ-XWFX7',0,'2020-08-12 12:27:11','2020-08-12 12:27:11'), (1504,'store_self_mention','store_self_mention',74,'false',0,'2020-08-12 12:27:11','2020-08-12 12:27:11'), (1537,'routine_appid','routine_appid',66,'wxcda5a2b1b98b6a95',0,'2020-08-12 19:46:23','2020-08-12 19:46:23'), (1538,'routine_appsecret','routine_appsecret',66,'a5a8f09edb934d019147c07841be44ec',0,'2020-08-12 19:46:23','2020-08-12 19:46:23'), (1539,'routine_logo','routine_logo',66,'image/product/2020/07/29/398c165115c247ba8ae79fc5cade8226tpf3ap2and.png',0,'2020-08-12 19:46:23','2020-08-12 19:46:23'), (1540,'routine_name','routine_name',66,'CRMEB',0,'2020-08-12 19:46:23','2020-08-12 19:46:23'), (1556,'field101','field101',80,'‘0’',0,'2020-08-12 19:46:46','2020-08-12 19:46:46'), (1589,'pay_weixin_appid','pay_weixin_appid',67,'wx009a1974eb2a76b811',0,'2020-08-12 20:07:52','2020-08-12 20:07:52'), (1590,'pay_weixin_appsecret','pay_weixin_appsecret',67,'adb3deca7e583eb94842f12766a32ed1111',0,'2020-08-12 20:07:52','2020-08-12 20:07:52'), (1591,'pay_weixin_mchid','pay_weixin_mchid',67,'1519485712321',0,'2020-08-12 20:07:52','2020-08-12 20:07:52'), (1592,'pay_weixin_client_cert','pay_weixin_client_cert',67,'1111',0,'2020-08-12 20:07:52','2020-08-12 20:07:52'), (1593,'pay_weixin_client_key','pay_weixin_client_key',67,'1111',0,'2020-08-12 20:07:52','2020-08-12 20:07:52'), (1594,'pay_weixin_key','pay_weixin_key',67,'cd94c0b5fe5ab2d9940bee9cae8391f01111',0,'2020-08-12 20:07:52','2020-08-12 20:07:52'), (1595,'pay_weixin_open','pay_weixin_open',67,'1',0,'2020-08-12 20:07:52','2020-08-12 20:07:52'), (1596,'paydir','paydir',67,'1111',0,'2020-08-12 20:07:52','2020-08-12 20:07:52'), (1597,'pay_routine_appid','pay_routine_appid',68,'wxcda5a2b1b98b6a95123',0,'2020-08-12 20:07:57','2020-08-12 20:07:57'), (1598,'pay_routine_appsecret','pay_routine_appsecret',68,'a5a8f09edb934d019147c07841be44e123c',0,'2020-08-12 20:07:57','2020-08-12 20:07:57'), (1599,'pay_routine_mchid','pay_routine_mchid',68,'151912312312485721',0,'2020-08-12 20:07:57','2020-08-12 20:07:57'), (1600,'pay_routine_key','pay_routine_key',68,'cd94c0b5fe5ab2d9940bee9cae8391f0123',0,'2020-08-12 20:07:57','2020-08-12 20:07:57'), (1601,'pay_routine_client_cert','pay_routine_client_cert',68,'1111',0,'2020-08-12 20:07:57','2020-08-12 20:07:57'), (1602,'pay_routine_client_key','pay_routine_client_key',68,'1111',0,'2020-08-12 20:07:57','2020-08-12 20:07:57'), (1605,'field101','field101',79,'‘1’',0,'2020-08-12 20:44:06','2020-08-12 20:44:06'), (1606,'replenishment_num','replenishment_num',77,'20',0,'2020-08-13 12:22:23','2020-08-13 12:22:23'), (1607,'store_stock','store_stock',77,'2',0,'2020-08-13 12:22:23','2020-08-13 12:22:23'), (1608,'stor_reason','stor_reason',77,'收货地址填错了 与描述不符 信息填错了,重新拍 收到商品损坏了 未按预定时间发货 其它原因',0,'2020-08-13 12:22:23','2020-08-13 12:22:23'), (1609,'routine_index_logo','routine_index_logo',77,'image/operation/2020/08/13/cb5f8da9f32449f6a21579ef86bad2d3woxeu3nilt.png',0,'2020-08-13 12:22:23','2020-08-13 12:22:23'), (1610,'order_cancel_time','order_cancel_time',77,'1',0,'2020-08-13 12:22:23','2020-08-13 12:22:23'), (1611,'order_activity_time','order_activity_time',77,'2',0,'2020-08-13 12:22:23','2020-08-13 12:22:23'), (1612,'vip_open','vip_open',77,'1111',0,'2020-08-13 12:22:23','2020-08-13 12:22:23'), (1613,'new_order_audio_link','new_order_audio_link',77,'1111',0,'2020-08-13 12:22:23','2020-08-13 12:22:23'), (1623,'site_name','site_name',64,'CRMEB',0,'2020-08-13 14:46:06','2020-08-13 14:46:06'), (1624,'site_url','site_url',64,'https://java.crmeb.net',0,'2020-08-13 14:46:06','2020-08-13 14:46:06'), (1625,'api_url','api_url',64,'https://api.java.crmeb.net',0,'2020-08-13 14:46:06','2020-08-13 14:46:06'), (1626,'site_logo','site_logo',64,'image/operation/2020/08/13/cb5f8da9f32449f6a21579ef86bad2d3woxeu3nilt.png',0,'2020-08-13 14:46:06','2020-08-13 14:46:06'), (1627,'login_logo','login_logo',64,'image/product/2020/07/30/765f540742a24380bc57e749ea1fd244r1m89e342q.png',0,'2020-08-13 14:46:06','2020-08-13 14:46:06'), (1628,'site_logo_square','site_logo_square',64,'image/product/2020/07/29/398c165115c247ba8ae79fc5cade8226tpf3ap2and.png',0,'2020-08-13 14:46:06','2020-08-13 14:46:06'), (1629,'admin_login_bg_pic','admin_login_bg_pic',64,'image/product/2020/07/30/47aaa9df468b46ee968eb9d10de3e447v9jc8xim6q.jpg',0,'2020-08-13 14:46:06','2020-08-13 14:46:06'), (1630,'seo_title','seo_title',64,'CRMEB',0,'2020-08-13 14:46:06','2020-08-13 14:46:06'), (1631,'news_slides_limit','news_slides_limit',64,'5',0,'2020-08-13 14:46:06','2020-08-13 14:46:06'), (1632,'store_user_min_recharge','store_user_min_recharge',78,'0',0,'2020-08-13 15:43:21','2020-08-13 15:43:21'), (1633,'recharge_switch','recharge_switch',78,'true',0,'2020-08-13 15:43:21','2020-08-13 15:43:21'), (1634,'recharge_attention','recharge_attention',78,'测试\n测试1\n测试2\n测试3',0,'2020-08-13 15:43:21','2020-08-13 15:43:21'); /*!40000 ALTER TABLE `eb_system_config` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_system_config_copy1 # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_config_copy1`; CREATE TABLE `eb_system_config_copy1` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '配置id', `name` varchar(255) NOT NULL DEFAULT '' COMMENT '字段名称', `title` varchar(255) NOT NULL DEFAULT '' COMMENT '字段提示文字', `form_id` int(10) DEFAULT '0' COMMENT '表单id', `value` varchar(5000) DEFAULT '' COMMENT '值', `status` tinyint(1) DEFAULT '0' COMMENT '是否隐藏', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `status+name` (`name`), KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='配置表'; LOCK TABLES `eb_system_config_copy1` WRITE; /*!40000 ALTER TABLE `eb_system_config_copy1` DISABLE KEYS */; INSERT INTO `eb_system_config_copy1` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (169,'site_name','',0,'crmeb_java',0,'2020-05-14 15:20:25','2020-06-03 09:51:41'), (170,'site_url','',0,'front.java.crmeb.net:20002',0,'2020-05-14 15:20:25','2020-06-03 09:52:17'), (171,'site_logo','',0,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',0,'2020-05-14 15:20:25','2020-06-03 09:51:47'), (172,'site_phone','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (173,'seo_title','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (174,'site_email','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (175,'site_qq','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (176,'site_close','',0,'0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (177,'close_system','',0,'0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (178,'wechat_appid','',65,'wx51217d26810942b8',0,'2020-05-14 15:20:25','2020-06-01 16:55:49'), (179,'wechat_appsecret','',65,'6ee0f86e75da4a977a757d0571185df8',0,'2020-05-14 15:20:25','2020-06-01 16:55:50'), (180,'wechat_token','',65,'n6n2QitGEy63i5iqo2B3',0,'2020-05-14 15:20:25','2020-06-01 16:55:56'), (181,'wechat_encode','',65,'qOOBXmmpkQbSMWWLfmLZgcJwCTCjHWSugCAuPyLFIww',0,'2020-05-14 15:20:25','2020-06-01 16:55:51'), (182,'wechat_encodingaeskey','',65,'',0,'2020-05-14 15:20:25','2020-06-01 16:55:52'), (183,'wechat_share_img','',65,'',0,'2020-05-14 15:20:25','2020-06-01 16:55:53'), (184,'wechat_qrcode','',65,'',0,'2020-05-14 15:20:25','2020-06-01 16:55:54'), (185,'wechat_type','',65,'0',0,'2020-05-14 15:20:25','2020-06-01 16:55:57'), (186,'wechat_share_title','',65,'CRMEB',0,'2020-05-14 15:20:25','2020-06-01 16:55:55'), (187,'wechat_share_synopsis','',65,'CRMEB',0,'2020-05-14 15:20:25','2020-06-01 16:55:55'), (188,'pay_weixin_appid','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (189,'pay_weixin_appsecret','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (190,'pay_weixin_mchid','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (191,'pay_weixin_client_cert','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (192,'pay_weixin_client_key','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (193,'pay_weixin_key','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (194,'pay_weixin_open','',0,'1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (195,'store_postage','',0,'0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (196,'store_free_postage','',0,'1000',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (197,'offline_postage','',0,'0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (198,'integral_ratio','',0,'1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (199,'site_service_phone','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (200,'store_user_min_recharge','',0,'0.01',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (201,'system_express_app_code','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (202,'main_business','',0,' IT\\u79d1\\u6280 \\u4e92\\u8054\\u7f51|\\u7535\\u5b50\\u5546\\u52a1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (203,'vice_business','',0,'IT\\u79d1\\u6280 IT\\u8f6f\\u4ef6\\u4e0e\\u670d\\u52a1 ',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (204,'store_brokerage_ratio','',0,'80',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (205,'user_extract_min_price','',0,'100',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (206,'sx_sign_min_int','',0,'1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (207,'sx_sign_max_int','',0,'5',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (208,'about_us','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (209,'replenishment_num','',0,'20',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (210,'routine_appId','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (211,'routine_appsecret','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (212,'api','',0,'\\/api\\/wechat\\/serve',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (213,'paydir','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (214,'routine_logo','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (215,'routine_name','',0,'CRMEB',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (216,'store_stock','',0,'2',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (217,'stor_reason','',0,'\\u6536\\u8d27\\u5730\\u5740\\u586b\\u9519\\u4e86\\r\\n\\u4e0e\\u63cf\\u8ff0\\u4e0d\\u7b26\\r\\n\\u4fe1\\u606f\\u586b\\u9519\\u4e86\\uff0c\\u91cd\\u65b0\\u62cd\\r\\n\\u6536\\u5230\\u5546\\u54c1\\u635f\\u574f\\u4e86\\r\\n\\u672a\\u6309\\u9884\\u5b9a\\u65f6\\u95f4\\u53d1\\u8d27\\r\\n\\u5176\\u5b83\\u539f\\u56e0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (218,'store_brokerage_two','',0,'60',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (219,'store_brokerage_statu','',0,'2',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (220,'pay_routine_appid','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (221,'pay_routine_appsecret','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (222,'pay_routine_mchid','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (223,'pay_routine_key','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (224,'pay_routine_client_cert','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (225,'pay_routine_client_key','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (226,'wechat_avatar','',65,'',0,'2020-05-14 15:20:25','2020-06-01 16:55:51'), (227,'user_extract_bank','',0,'\\u4e2d\\u56fd\\u519c\\u884c\\r\\n\\u4e2d\\u56fd\\u5efa\\u8bbe\\u94f6\\u884c\\r\\n\\u5de5\\u5546\\u94f6\\u884c',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (228,'fast_number','',0,'10',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (229,'bast_number','',0,'10',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (230,'first_number','',0,'10',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (231,'routine_index_logo','',0,'http:\\/\\/kaifa.crmeb.net\\/uploads\\/attach\\/2019\\/08\\/20190801\\/deb30359d22c0b80f3cece86cb462104.png',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (232,'upload_type','',0,'4',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (233,'uploadUrl','',0,'https://crmeb-java-test-1251162914.cos.ap-shanghai.myqcloud.com',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (234,'accessKey','',0,'AKIDmXP1NU1vIRTbU6GorVtAVaPxBAytYrpY',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (235,'secretKey','',0,'”92hXml24rSYSFwNYS6UowCNu96rNegx1“',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (236,'storage_name','',0,'crmeb-java-test-1251162914',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (237,'order_cancel_time','',0,'0.1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (238,'order_activity_time','',0,'2',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (239,'order_bargain_time','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (240,'order_seckill_time','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (241,'order_pink_time','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (242,'storage_region','',0,'ap-shanghai',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (243,'vip_open','',0,'1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (244,'new_order_audio_link','',0,'\\/public\\/uploads\\/config\\/file\\/5cedd83eedba2.mp3',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (245,'system_delivery_time','',0,'1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (246,'sms_account','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (247,'sms_token','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (249,'offline_pay_status','',0,'2',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (250,'news_slides_limit','',0,'5',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (251,'recharge_switch','',0,'1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (253,'store_self_mention','',0,'1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (254,'cache_config','',0,'86400',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (255,'pay_success_printing_switch','',0,'1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (256,'develop_id','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (257,'printing_api_key','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (258,'printing_client_id','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (259,'terminal_number','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (260,'lower_order_switch','',0,'0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (261,'deliver_goods_switch','',0,'0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (262,'confirm_take_over_switch','',0,'0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (263,'admin_lower_order_switch','',0,'0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (264,'admin_pay_success_switch','',0,'0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (265,'admin_refund_switch','',0,'0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (266,'admin_confirm_take_over_switch','',0,'0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (267,'new_goods_bananr','',0,'',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (268,'recharge_attention','',0,'\\u5145\\u503c\\u540e\\u5e10\\u6237\\u7684\\u91d1\\u989d\\u4e0d\\u80fd\\u63d0\\u73b0\\uff0c\\u53ef\\u7528\\u4e8e\\u5546\\u57ce\\u6d88\\u8d39\\u4f7f\\u7528\\n\\u4f63\\u91d1\\u5bfc\\u5165\\u8d26\\u6237\\u4e4b\\u540e\\u4e0d\\u80fd\\u518d\\u6b21\\u5bfc\\u51fa\\u3001\\u4e0d\\u53ef\\u63d0\\u73b0\\n\\u8d26\\u6237\\u5145\\u503c\\u51fa\\u73b0\\u95ee\\u9898\\u53ef\\u8054\\u7cfb\\u5546\\u57ce\\u5ba2\\u670d\\uff0c\\u4e5f\\u53ef\\u62e8\\u6253\\u5546\\u57ce\\u5ba2\\u670d\\u70ed\\u7ebf\\uff1a4008888888',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (269,'extract_time','',0,'30',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (270,'store_brokerage_price','',0,'1',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (271,'price_revision_switch','',0,'0',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (272,'promotion_number','',0,'3',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (273,'image_ext_str','',0,'jpg,jpeg,gif,png',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (274,'image_max_size','',0,'2',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (275,'file_ext_str','',0,'zip,doc,docx,xls,pdf',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (276,'file_max_size','',0,'20',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (277,'upload_root_path','',0,'/Library/WebServer/Documents/zhongbang/java/crmeb/',0,'2020-05-14 15:20:25','2020-05-14 16:37:47'), (278,'form-1','',0,'{\n \"id\": 278,\n \"item\": [\n {\n \"name\": \"form-1-name\",\n \"value\": \"form-1-value\"\n },\n {\n \"name\": \"form-1-name1\",\n \"value\": \"form-1-value1\"\n }\n ]\n}',0,'2020-05-14 16:57:27','2020-05-14 17:07:04'), (384,'mobile','mobile',64,'6876',0,'2020-05-21 10:31:52','2020-05-21 10:31:52'), (385,'field114','field114',64,'1111',0,'2020-05-21 10:31:52','2020-05-21 10:31:52'), (386,'field103','field103',64,'8888888888',0,'2020-05-21 10:31:52','2020-05-21 10:31:52'), (387,'field115','field115',64,'1111',0,'2020-05-21 10:31:52','2020-05-21 10:31:52'), (388,'field116','field116',64,'1',0,'2020-05-21 10:31:52','2020-05-21 10:31:52'), (389,'field117','field117',64,'888888888888',0,'2020-05-21 10:31:52','2020-05-21 10:31:52'), (410,'field101','field101',66,'999999999999999999999999999',0,'2020-05-21 10:37:21','2020-05-21 10:37:21'), (411,'field102','field102',66,'999999999999999999999999999',0,'2020-05-21 10:37:21','2020-05-21 10:37:21'), (412,'field103','field103',66,'1111',0,'2020-05-21 10:37:21','2020-05-21 10:37:21'), (413,'field104','field104',66,'99999999999999999999999999',0,'2020-05-21 10:37:21','2020-05-21 10:37:21'), (414,'field101','field101',67,'9999999999999999999',0,'2020-05-21 10:37:32','2020-05-21 10:37:32'), (415,'field102','field102',67,'99999999999999',0,'2020-05-21 10:37:32','2020-05-21 10:37:32'), (416,'field103','field103',67,'9999999999999999999999',0,'2020-05-21 10:37:32','2020-05-21 10:37:32'), (417,'field104','field104',67,'1111',0,'2020-05-21 10:37:32','2020-05-21 10:37:32'), (418,'field105','field105',67,'1111',0,'2020-05-21 10:37:32','2020-05-21 10:37:32'), (419,'field106','field106',67,'99999999999999999999999999',0,'2020-05-21 10:37:32','2020-05-21 10:37:32'), (420,'field107','field107',67,'1',0,'2020-05-21 10:37:32','2020-05-21 10:37:32'), (421,'field108','field108',67,'999999999999',0,'2020-05-21 10:37:32','2020-05-21 10:37:32'), (422,'field101','field101',68,'8888888888',0,'2020-05-21 10:37:47','2020-05-21 10:37:47'), (423,'field102','field102',68,'888888888888888888',0,'2020-05-21 10:37:47','2020-05-21 10:37:47'), (424,'field103','field103',68,'8888888888888',0,'2020-05-21 10:37:47','2020-05-21 10:37:47'), (425,'field104','field104',68,'88888888888888',0,'2020-05-21 10:37:47','2020-05-21 10:37:47'), (426,'field105','field105',68,'1111',0,'2020-05-21 10:37:47','2020-05-21 10:37:47'), (427,'field106','field106',68,'1111',0,'2020-05-21 10:37:47','2020-05-21 10:37:47'), (437,'field101','field101',75,'‘1’',0,'2020-05-21 10:47:23','2020-05-21 10:47:23'), (438,'field102','field102',75,'1',0,'2020-05-21 10:47:23','2020-05-21 10:47:23'), (439,'field103','field103',75,'9',0,'2020-05-21 10:47:23','2020-05-21 10:47:23'), (440,'field104','field104',75,'4',0,'2020-05-21 10:47:23','2020-05-21 10:47:23'), (441,'field105','field105',75,'5',0,'2020-05-21 10:47:24','2020-05-21 10:47:24'), (466,'field101','field101',73,'‘1’',0,'2020-05-21 10:52:14','2020-05-21 10:52:14'), (467,'field102','field102',73,'‘2’',0,'2020-05-21 10:52:14','2020-05-21 10:52:14'), (468,'field103','field103',73,'‘1’',0,'2020-05-21 10:52:14','2020-05-21 10:52:14'), (469,'field104','field104',73,'‘2’',0,'2020-05-21 10:52:15','2020-05-21 10:52:15'), (470,'field105','field105',73,'‘1’',0,'2020-05-21 10:52:15','2020-05-21 10:52:15'), (471,'field106','field106',73,'‘2’',0,'2020-05-21 10:52:15','2020-05-21 10:52:15'), (472,'field107','field107',73,'‘1’',0,'2020-05-21 10:52:15','2020-05-21 10:52:15'), (473,'field108','field108',73,'‘2’',0,'2020-05-21 10:52:15','2020-05-21 10:52:15'), (480,'field101','field101',79,'‘1’',0,'2020-05-21 14:21:41','2020-05-21 14:21:41'), (481,'field101','field101',72,'‘3’',0,'2020-05-21 14:21:53','2020-05-21 14:21:53'), (482,'field101','field101',81,'321',0,'2020-05-21 14:22:07','2020-05-21 14:22:07'), (483,'field102','field102',81,'321',0,'2020-05-21 14:22:07','2020-05-21 14:22:07'), (484,'field103','field103',81,'321',0,'2020-05-21 14:22:07','2020-05-21 14:22:07'), (485,'field104','field104',81,'321',0,'2020-05-21 14:22:07','2020-05-21 14:22:07'), (486,'field105','field105',81,'321',0,'2020-05-21 14:22:07','2020-05-21 14:22:07'), (492,'field101','field101',82,'6776',0,'2020-05-21 14:22:35','2020-05-21 14:22:35'), (493,'field102','field102',82,'55',0,'2020-05-21 14:22:35','2020-05-21 14:22:35'), (494,'field103','field103',82,'44Edited',0,'2020-05-21 14:22:35','2020-05-21 14:22:35'), (495,'field104','field104',82,'6',0,'2020-05-21 14:22:35','2020-05-21 14:22:35'), (496,'field105','field105',82,'8',0,'2020-05-21 14:22:35','2020-05-21 14:22:35'), (497,'field101','field101',83,'098',0,'2020-05-21 14:22:50','2020-05-21 14:22:50'), (498,'field102','field102',83,'098',0,'2020-05-21 14:22:50','2020-05-21 14:22:50'), (499,'field103','field103',83,'09876',0,'2020-05-21 14:22:50','2020-05-21 14:22:50'), (500,'field104','field104',83,'7',0,'2020-05-21 14:22:50','2020-05-21 14:22:50'), (501,'field105','field105',83,'7',0,'2020-05-21 14:22:50','2020-05-21 14:22:50'), (584,'field104','field104',85,'‘1’',0,'2020-05-25 12:32:01','2020-05-25 12:32:01'), (585,'field101','field101',86,'1',0,'2020-05-26 16:14:07','2020-05-26 16:14:07'), (586,'field102','field102',86,'1',0,'2020-05-26 16:14:07','2020-05-26 16:14:07'), (587,'field103','field103',86,'1111',0,'2020-05-26 16:14:07','2020-05-26 16:14:07'), (588,'field104','field104',86,'1',0,'2020-05-26 16:14:07','2020-05-26 16:14:07'), (589,'field106','field106',86,'‘0’',0,'2020-05-26 16:14:07','2020-05-26 16:14:07'), (590,'store_free_postage','store_free_postage',74,'1',0,'2020-05-28 16:55:36','2020-05-28 16:55:36'), (591,'offline_postage','offline_postage',74,'true',0,'2020-05-28 16:55:36','2020-05-28 16:55:36'), (592,'system_express_app_code','system_express_app_code',74,'232131',0,'2020-05-28 16:55:36','2020-05-28 16:55:36'), (593,'tengxun_map_key','tengxun_map_key',74,'SMJBZ-WCHK4-ZPZUA-DSIXI-XDDVQ-XWFX7',0,'2020-05-28 16:55:36','2020-05-28 16:55:36'), (594,'store_self_mention','store_self_mention',74,'true',0,'2020-05-28 16:55:36','2020-05-28 16:55:36'), (599,'fastNumber','fastNumber',69,'3',0,'2020-06-03 09:44:12','2020-06-03 09:44:12'), (600,'fastInfo','fastInfo',69,'快速选择分类简介',0,'2020-06-03 09:44:12','2020-06-03 09:44:12'), (601,'bastNumber','bastNumber',69,'3',0,'2020-06-03 09:44:12','2020-06-03 09:44:12'), (602,'bastInfo','bastInfo',69,'精品推荐简介',0,'2020-06-03 09:44:12','2020-06-03 09:44:12'), (603,'firstNumber','firstNumber',69,'3',0,'2020-06-03 09:44:13','2020-06-03 09:44:13'), (604,'firstInfo','firstInfo',69,'首发新品简介',0,'2020-06-03 09:44:13','2020-06-03 09:44:13'), (605,'promotionNumber','promotionNumber',69,'3',0,'2020-06-03 09:44:13','2020-06-03 09:44:13'), (606,'salesInfo','salesInfo',69,'促销单品简介',0,'2020-06-03 09:44:13','2020-06-03 09:44:13'); /*!40000 ALTER TABLE `eb_system_config_copy1` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_system_file # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_file`; CREATE TABLE `eb_system_file` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '文件对比ID', `cthash` char(32) NOT NULL DEFAULT '' COMMENT '文件内容', `filename` varchar(255) NOT NULL DEFAULT '' COMMENT '文价名称', `atime` char(12) NOT NULL DEFAULT '' COMMENT '上次访问时间', `mtime` char(12) NOT NULL DEFAULT '' COMMENT '上次修改时间', `ctime` char(12) NOT NULL DEFAULT '' COMMENT '上次改变时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='文件对比表'; # Dump of table eb_system_form_temp # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_form_temp`; CREATE TABLE `eb_system_form_temp` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '表单模板id', `name` varchar(500) NOT NULL DEFAULT '' COMMENT '表单名称', `info` varchar(500) NOT NULL DEFAULT '' COMMENT '表单简介', `content` text NOT NULL COMMENT '表单内容', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='表单模板'; LOCK TABLES `eb_system_form_temp` WRITE; /*!40000 ALTER TABLE `eb_system_form_temp` DISABLE KEYS */; INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (63,'string','stringEdited','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"年收入\",\"labelWidth\":\"\",\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":112,\"renderKey\":1589768825139,\"defaultValue\":999},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入年收入\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"field112\"},{\"__config__\":{\"label\":\"test1\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":114,\"renderKey\":1589857300162},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入test1\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"field114\"}]}','2020-05-15 17:19:17','2020-05-19 12:25:59'), (64,'基础配置','系统设置-基础配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":300,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"网站名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":126,\"renderKey\":1595658466046},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入网站名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"site_name\"},{\"__config__\":{\"label\":\"网站地址\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":111,\"renderKey\":1597048570961},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"site_url\",\"placeholder\":\"webSiet网站地址网站地址\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"Api地址\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"api_url\",\"placeholder\":\"webSiet网站地址Api地址\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"后台LOGO(左上角logo,建议尺寸[127*40])\",\"tag\":\"self-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":124,\"renderKey\":1595658064081},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"picture-card\",\"multiple\":false,\"__vModel__\":\"site_logo\"},{\"__config__\":{\"label\":\"登录页LOGO\",\"tag\":\"self-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":128,\"renderKey\":1595658697800},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"login_logo\"},{\"__config__\":{\"label\":\"后台LOGO-正方形(尺寸35px*35px)\",\"tag\":\"self-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":127,\"renderKey\":1595658695317},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"site_logo_square\"},{\"__config__\":{\"label\":\"登录页背景图\",\"tag\":\"self-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":152,\"renderKey\":1596017451389},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"admin_login_bg_pic\"},{\"__config__\":{\"label\":\"SEO标题\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1589534140652},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入SEO标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"seo_title\"},{\"__config__\":{\"label\":\"新闻幻灯片数量上限\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":116,\"renderKey\":1589941416644},\"placeholder\":\"新闻幻灯片数量上限\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"news_slides_limit\"}]}','2020-05-15 17:20:10','2020-08-13 15:19:27'), (65,'公众号配置','应用配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"AppId\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1589942266186},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入AppId\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"wechat_appid\"},{\"__config__\":{\"label\":\"AppSecret\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":105,\"renderKey\":1589942280095},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入AppSecret\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"wechat_appsecret\"},{\"__config__\":{\"label\":\"微信验证Token\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":106,\"renderKey\":1589942293464},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入微信验证Token\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"wechat_token\"},{\"__config__\":{\"label\":\"消息加解密方式\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":108,\"renderKey\":1589942319970,\"defaultValue\":0},\"__slot__\":{\"options\":[{\"label\":\"明文模式\",\"value\":0},{\"label\":\"兼容模式\",\"value\":1},{\"label\":\"安全模式\",\"value\":2}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"wechat_encode\"},{\"__config__\":{\"label\":\"EncodingAESKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":109,\"renderKey\":1589942368425},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入EncodingAESKey\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"wechat_encode\"},{\"__config__\":{\"label\":\"微信分享图片\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":false,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":123,\"renderKey\":1597063713790},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"wechat_share_img\"},{\"__config__\":{\"label\":\"公众号关联二维码\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":false,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":124,\"renderKey\":1597063784328},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"wechat_qrcode\"},{\"__config__\":{\"label\":\"微信分享标题\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":135,\"renderKey\":1591000910252,\"defaultValue\":\"CRMEB\"},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入微信分享标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"wechat_share_title\"},{\"__config__\":{\"label\":\"微信分享简介\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":136,\"renderKey\":1591001203576,\"defaultValue\":\"CRMEB\"},\"type\":\"textarea\",\"placeholder\":\"请输入微信分享简介\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"100%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"wechat_share_synopsis\"},{\"__config__\":{\"label\":\"接口地址\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":138,\"renderKey\":1591001321747},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"微信接口例如:http://www.abc.com/api/wechat/serve\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"api\"},{\"__config__\":{\"label\":\"H5登录logo\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":false,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":125,\"renderKey\":1597063818849},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"wechat_avatar\"},{\"__config__\":{\"label\":\"用户H5默认头像\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":false,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":126,\"renderKey\":1597063821840},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"h5_avatar\"}]}','2020-05-15 17:22:16','2020-08-12 20:06:47'), (66,'小程序配置','应用配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":140,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"appId\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1589942764174},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入appId\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"routine_appid\"},{\"__config__\":{\"label\":\"AppSecret\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1589942771851},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入AppSecret\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"routine_appsecret\"},{\"__config__\":{\"label\":\"小程序授权Logo\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":110,\"renderKey\":1596185815814},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"routine_logo\"},{\"__config__\":{\"label\":\"小程序名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1589942826385},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入小程序名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"routine_name\"}]}','2020-05-15 17:39:17','2020-07-31 16:57:24'), (67,'公众号支付配置','支付配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"appId\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1589942880822},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入appId\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_weixin_appid\"},{\"__config__\":{\"label\":\"Appsecret\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1589942891565},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入Appsecret\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_weixin_appsecret\"},{\"__config__\":{\"label\":\"Mahid\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1589942909192},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入Mahid\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_weixin_mchid\"},{\"__config__\":{\"label\":\"微信支付证书\",\"tag\":\"upload-file\",\"tagIcon\":\"uploadPicture\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":false,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":123,\"renderKey\":1597063942492},\"__slot__\":{\"list-type\":true},\"name\":\"upfile\",\"__vModel__\":\"pay_weixin_client_cert\"},{\"__config__\":{\"label\":\"微信支付证书秘钥\",\"tag\":\"upload-file\",\"tagIcon\":\"uploadPicture\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":false,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":124,\"renderKey\":1597063944710},\"__slot__\":{\"list-type\":true},\"name\":\"upfile\",\"__vModel__\":\"pay_weixin_client_key\"},{\"__config__\":{\"label\":\"Key\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":106,\"renderKey\":1589942961506},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入Key\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_weixin_key\"},{\"__config__\":{\"label\":\"状态\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":107,\"renderKey\":1589942970321,\"defaultValue\":1},\"__slot__\":{\"options\":[{\"label\":\"开启\",\"value\":1},{\"label\":\"关闭\",\"value\":2}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"pay_weixin_open\"},{\"__config__\":{\"label\":\"配置目录\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":false,\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":108,\"renderKey\":1589942998404},\"type\":\"textarea\",\"placeholder\":\"请输入配置目录\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"100%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"paydir\"}]}','2020-05-16 10:19:37','2020-08-10 20:53:50'), (68,'小程序支付配置','支付配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"Appid\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1589943059385},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入Appid\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_routine_appid\"},{\"__config__\":{\"label\":\"Appsecret\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1589943069474},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入Appsecret\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_routine_appsecret\"},{\"__config__\":{\"label\":\"Mchid\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1589943084448},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入Mchid\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_routine_mchid\"},{\"__config__\":{\"label\":\"Key\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1589943093596},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入Key\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_routine_key\"},{\"__config__\":{\"label\":\"小程序支付证书\",\"tag\":\"upload-file\",\"tagIcon\":\"uploadPicture\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":124,\"renderKey\":1597064137727},\"__slot__\":{\"list-type\":true},\"name\":\"upfile\",\"__vModel__\":\"pay_routine_client_cert\"},{\"__config__\":{\"label\":\"小程序支付证书秘钥\",\"tag\":\"upload-file\",\"tagIcon\":\"uploadPicture\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":123,\"renderKey\":1597064136100},\"__slot__\":{\"list-type\":true},\"name\":\"upfile\",\"__vModel__\":\"pay_routine_client_key\"}]}','2020-05-16 10:35:06','2020-08-10 20:56:48'), (69,'首页配置','首页配置','{\"formRef\":\"stivepeimEdited\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":140,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"快速选择分类个数\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":102,\"renderKey\":1589943234493},\"placeholder\":\"快速选择分类个数快速选择分类个数\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"fastNumber\"},{\"__config__\":{\"label\":\"快速选择分类简介\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":102,\"renderKey\":1591148519912},\"type\":\"textarea\",\"placeholder\":\"请输入快速选择分类简介\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"100%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"fastInfo\"},{\"__config__\":{\"label\":\"精品推荐个数\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":105,\"renderKey\":1589943251783},\"placeholder\":\"精品推荐个数\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"bastNumber\"},{\"__config__\":{\"label\":\"精品推荐简介\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":103,\"renderKey\":1591148546642},\"type\":\"textarea\",\"placeholder\":\"请输入精品推荐简介\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"100%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"bastInfo\"},{\"__config__\":{\"label\":\"首发新品个数\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":103,\"renderKey\":1589943250910},\"placeholder\":\"首发新品个数\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"firstNumber\"},{\"__config__\":{\"label\":\"首发新品简介\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":104,\"renderKey\":1591148566944},\"type\":\"textarea\",\"placeholder\":\"请输入首发新品简介\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"100%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"firstInfo\"},{\"__config__\":{\"label\":\"促销单品个数\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":104,\"renderKey\":1589943251189},\"placeholder\":\"促销单品个数\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"promotionNumber\"},{\"__config__\":{\"label\":\"促销单品简介\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":105,\"renderKey\":1591148567412},\"type\":\"textarea\",\"placeholder\":\"请输入促销单品简介\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"100%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"salesInfo\"}]}','2020-05-16 10:37:55','2020-06-03 09:43:40'), (70,'编辑城市','编辑城市','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"上级名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":false,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"parentName\",\"placeholder\":\"上级名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":11,\"show-word-limit\":false,\"readonly\":true,\"disabled\":false},{\"__config__\":{\"label\":\"名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":109,\"renderKey\":1589790937111},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"name\"}]}','2020-05-18 16:39:58','2020-05-25 12:06:10'), (71,'添加物流公司','添加物流公司','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"公司名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"defaultValue\":\"\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"name\",\"placeholder\":\"请输入公司名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":11,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"编码\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":false,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":109,\"renderKey\":1589858082280},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入编码\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"code\"},{\"__config__\":{\"label\":\"排序\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":0,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":false,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":114,\"renderKey\":1589858279409,\"defaultValue\":0},\"placeholder\":\"0\",\"step\":1,\"step-strictly\":true,\"controls-position\":\"right\",\"disabled\":false,\"__vModel__\":\"sort\",\"min\":0},{\"__config__\":{\"label\":\"是否启用\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":false,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":110,\"renderKey\":1589858408168,\"defaultValue\":\"‘0’\"},\"__slot__\":{\"options\":[{\"label\":\"隐藏\",\"value\":\"‘0’\"},{\"label\":\"显示\",\"value\":\"‘1’\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"isShow\"}]}','2020-05-19 11:17:03','2020-07-29 16:49:54'), (72,'上传文件配置-基础配置','上传文件配置-基础配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":130,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"layout\":\"rowFormItem\",\"tagIcon\":\"row\",\"label\":\"行容器\",\"layoutTree\":true,\"children\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/layout\",\"formId\":101,\"span\":24,\"renderKey\":1592474288129,\"componentName\":\"row101\",\"gutter\":15},\"type\":\"default\",\"justify\":\"start\",\"align\":\"top\"}]}','2020-05-19 17:10:40','2020-06-18 17:58:09'), (73,'短信提醒开关','短信提醒开关','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":220,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"用户确认收货管理员短信提醒\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":101,\"renderKey\":1589943573197,\"defaultValue\":\"‘2’\"},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":\"‘1’\"},{\"label\":\"开启\",\"value\":\"‘2’\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"field101\"},{\"__config__\":{\"label\":\"用户支付成功管理员提醒开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":102,\"renderKey\":1589943614245,\"defaultValue\":\"‘1’\"},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":\"‘1’\"},{\"label\":\"开启\",\"value\":\"‘2’\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"field102\"},{\"__config__\":{\"label\":\"用户下单管理员提醒开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":103,\"renderKey\":1589943614436,\"defaultValue\":\"‘1’\"},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":\"‘1’\"},{\"label\":\"开启\",\"value\":\"‘2’\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"field103\"},{\"__config__\":{\"label\":\"用户下单管理员提醒开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":104,\"renderKey\":1589943614698,\"defaultValue\":\"‘1’\"},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":\"‘1’\"},{\"label\":\"开启\",\"value\":\"‘2’\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"field104\"},{\"__config__\":{\"label\":\"确认收货提醒开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":105,\"renderKey\":1589943614906,\"defaultValue\":\"‘1’\"},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":\"‘1’\"},{\"label\":\"开启\",\"value\":\"‘2’\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"field105\"},{\"__config__\":{\"label\":\"发货提醒开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":106,\"renderKey\":1589943615162,\"defaultValue\":\"‘1’\"},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":\"‘1’\"},{\"label\":\"开启\",\"value\":\"‘2’\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"field106\"},{\"__config__\":{\"label\":\"支付成功提醒开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":107,\"renderKey\":1589943615404,\"defaultValue\":\"‘1’\"},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":\"‘1’\"},{\"label\":\"开启\",\"value\":\"‘2’\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"field107\"},{\"__config__\":{\"label\":\"改价短信提醒开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":108,\"renderKey\":1589943615642,\"defaultValue\":\"‘1’\"},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":\"‘1’\"},{\"label\":\"开启\",\"value\":\"‘2’\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"field108\"}]}','2020-05-19 17:11:00','2020-05-21 10:51:44'), (74,'物流配置','物流配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":23,\"formBtns\":true,\"unFocusedComponentBorder\":false,\"fields\":[{\"__config__\":{\"label\":\"满额包邮\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":180,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":18,\"layout\":\"colFormItem\",\"required\":false,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":101,\"renderKey\":1589939942507,\"defaultValue\":1},\"placeholder\":\"\",\"step\":1,\"step-strictly\":true,\"controls-position\":\"right\",\"disabled\":false,\"__vModel__\":\"store_free_postage\",\"min\":0},{\"__config__\":{\"label\":\"线下支付是否包邮\",\"labelWidth\":180,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":13,\"optionType\":\"default\",\"regList\":[],\"required\":false,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":103,\"renderKey\":1589940114804,\"defaultValue\":\"true\"},\"__slot__\":{\"options\":[{\"label\":\"不包邮\",\"value\":\"false\"},{\"label\":\"包邮\",\"value\":\"true\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"offline_postage\"},{\"__config__\":{\"label\":\"快递查询密钥\",\"labelWidth\":180,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":false,\"layout\":\"colFormItem\",\"span\":23,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1589940231623},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入快递查询密钥快递查询密钥\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"system_express_app_code\"},{\"__config__\":{\"label\":\"腾讯地图KEY\",\"labelWidth\":180,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":false,\"layout\":\"colFormItem\",\"span\":23,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":105,\"renderKey\":1589940263502},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入腾讯地图KEY\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"tengxun_map_key\"},{\"__config__\":{\"label\":\"是否开启提货点自提\",\"labelWidth\":180,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":23,\"optionType\":\"default\",\"regList\":[],\"required\":false,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":107,\"renderKey\":1589940326254,\"defaultValue\":false},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":\"false\"},{\"label\":\"开启\",\"value\":\"true\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"store_self_mention\"}]}','2020-05-20 10:07:14','2020-05-22 16:51:21'), (75,'小票打印','小票打印','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":190,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"支付成功订单打印开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":101,\"renderKey\":1589943790530,\"defaultValue\":\"‘1’\"},\"__slot__\":{\"options\":[{\"label\":\"关\",\"value\":\"‘1’\"},{\"label\":\"开\",\"value\":\"‘2’\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"field101\"},{\"__config__\":{\"label\":\"开发者ID\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1589943827496},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入开发者ID\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"field102\"},{\"__config__\":{\"label\":\"应用秘钥\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1589943840899},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入应用秘钥\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"field103\"},{\"__config__\":{\"label\":\"应用ID\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1589943850581},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入应用ID\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"field104\"},{\"__config__\":{\"label\":\"终端号\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":105,\"renderKey\":1589943850893},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入终端号\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"field105\"}]}','2020-05-20 11:04:26','2020-05-21 11:39:09'), (76,'wss配置','基础配置-wss配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":120,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"是否开始wss\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":113,\"renderKey\":1590030346403,\"defaultValue\":0},\"__slot__\":{\"options\":[{\"label\":\"开启\",\"value\":1},{\"label\":\"关闭\",\"value\":0}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"wss_open\"},{\"__config__\":{\"label\":\"ssl证书PEM\",\"tag\":\"upload-file\",\"tagIcon\":\"uploadPicture\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":123,\"renderKey\":1597063549359},\"__slot__\":{\"list-type\":true},\"name\":\"upfile\",\"__vModel__\":\"wss_local_cert\"},{\"__config__\":{\"label\":\"ssl证书KEY\",\"tag\":\"upload-file\",\"tagIcon\":\"uploadPicture\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":124,\"renderKey\":1597063583637},\"__slot__\":{\"list-type\":true},\"name\":\"upfile\",\"__vModel__\":\"wss_local_pk\"}]}','2020-05-21 11:07:21','2020-08-10 20:47:09'), (77,'商城基础配置','商城配置-商城基础配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":250,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"待补货数量\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":\"\",\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":101,\"renderKey\":1590031949003,\"defaultValue\":20},\"placeholder\":\"待补货数量\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"replenishment_num\",\"max\":99999},{\"__config__\":{\"label\":\"警戒库存\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":\"\",\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":102,\"renderKey\":1590032029141,\"defaultValue\":2},\"placeholder\":\"警戒库存\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"store_stock\",\"max\":99999},{\"__config__\":{\"label\":\"退货理由\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":103,\"renderKey\":1590032054065,\"defaultValue\":\"收货地址填错了 与描述不符 信息填错了,重新拍 收到商品损坏了 未按预定时间发货 其它原因\"},\"type\":\"textarea\",\"placeholder\":\"请填写退货理由\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"100%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"stor_reason\"},{\"__config__\":{\"label\":\"首页顶部logo图标(127*45)\",\"tag\":\"self-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":124,\"renderKey\":1595659136385},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"routine_index_logo\"},{\"__config__\":{\"label\":\"普通商品未支付取消订单时间\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":\"\",\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":105,\"renderKey\":1590032096481,\"defaultValue\":1},\"placeholder\":\"普通商品未支付取消订单时间\",\"step\":0,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"order_cancel_time\",\"max\":99999,\"precision\":3},{\"__config__\":{\"label\":\"活动商品未支付取消订单时间\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":\"\",\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":106,\"renderKey\":1590032112020,\"defaultValue\":2},\"placeholder\":\"活动商品未支付取消订单时间\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"order_activity_time\",\"max\":99999},{\"__config__\":{\"label\":\"会员功能是否开启\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":111,\"renderKey\":1590032159205,\"defaultValue\":0},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":0},{\"label\":\"开启\",\"value\":1}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"vip_open\"},{\"__config__\":{\"label\":\"新订单语音提示\",\"tag\":\"upload-file\",\"tagIcon\":\"uploadPicture\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":false,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":102,\"renderKey\":1597300171239},\"__slot__\":{\"list-type\":true},\"name\":\"upfile\",\"__vModel__\":\"new_order_audio_link\"}]}','2020-05-21 11:37:57','2020-08-13 14:30:49'), (78,'充值配置','商城配置-充值配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":200,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"用户最低充值金额\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":101,\"renderKey\":1590032399200,\"defaultValue\":0.01},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"用户最低充值金额\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"store_user_min_recharge\"},{\"__config__\":{\"label\":\"小程序充值开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":102,\"renderKey\":1590032438060,\"defaultValue\":false},\"__slot__\":{\"options\":[{\"label\":\"开启\",\"value\":\"true\"},{\"label\":\"关闭\",\"value\":\"false\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"recharge_switch\"},{\"__config__\":{\"label\":\"充值注意事项\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":103,\"renderKey\":1590032466493,\"defaultValue\":\"充值后帐户的金额不能提现,可用于商城消费使用 佣金导入账户之后不能再次导出、不可提现 账户充值出现问题可联系商城客服,也可拨打商城客服热线:4008888888\"},\"type\":\"textarea\",\"placeholder\":\"请输入充值注意事项\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"100%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"recharge_attention\"}]}','2020-05-21 11:41:45','2020-08-10 21:12:03'), (79,'线下支付','支付设置-线下支付','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"线下支付状态\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":101,\"renderKey\":1590041613118,\"defaultValue\":\"‘1’\"},\"__slot__\":{\"options\":[{\"label\":\"开启\",\"value\":\"‘1’\"},{\"label\":\"关闭\",\"value\":\"‘2’\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"field101\"}]}','2020-05-21 14:14:10','2020-08-12 20:44:57'), (80,'余额支付','支付配置-余额支付','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"余额支付状态\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":101,\"renderKey\":1590041613118,\"defaultValue\":\"‘0’\"},\"__slot__\":{\"options\":[{\"label\":\"开启\",\"value\":\"‘0’\"},{\"label\":\"关闭\",\"value\":\"‘1’\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"field101\"}]}','2020-05-21 14:14:49','2020-05-21 14:14:49'), (81,'阿里云配置','阿里云配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"空间域名 Domain\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1590041796581},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本空间域名 Domain\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"alUploadUrl\"},{\"__config__\":{\"label\":\"accessKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1590041835433},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本accessKey\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"alAccessKey\"},{\"__config__\":{\"label\":\"secretKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1590041835651},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本secretKey\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"alSecretKey\"},{\"__config__\":{\"label\":\"存储空间名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1590041835857},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本存储空间名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"alStorageName\"},{\"__config__\":{\"label\":\"所属地域\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":105,\"renderKey\":1590041836043},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本所属地域\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"alStorageRegion\"}]}','2020-05-21 14:18:12','2020-06-18 17:57:01'), (82,'七牛云配置','七牛云配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"空间域名 Domain\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1590041796581},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本空间域名 Domain\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"qnUploadUrl\"},{\"__config__\":{\"label\":\"accessKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1590041835433},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本accessKey\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"qnAccessKey\"},{\"__config__\":{\"label\":\"qnSecretKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1590041835651},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本qnSecretKey\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"qnSecretKey\"},{\"__config__\":{\"label\":\"存储空间名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1590041835857},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本存储空间名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"qnStorageName\"},{\"__config__\":{\"label\":\"所属地域\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":105,\"renderKey\":1590041836043},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本所属地域\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"qnStorageRegion\"}]}','2020-05-21 14:18:29','2020-06-18 17:56:54'), (83,'腾讯云配置','腾讯云配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"空间域名 Domain\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1590041796581},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本空间域名 Domain\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"txUploadUrl\"},{\"__config__\":{\"label\":\"accessKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1590041835433},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本accessKeyaccessKeyaccessKeyaccessKey\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"txAccessKey\"},{\"__config__\":{\"label\":\"secretKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1590041835651},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本secretKey\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"txSecretKey\"},{\"__config__\":{\"label\":\"存储空间名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1590041835857},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本存储空间名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"txStorageName\"},{\"__config__\":{\"label\":\"所属地域\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":105,\"renderKey\":1590041836043},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本所属地域\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"txStorageRegion\"}]}','2020-05-21 14:18:46','2020-06-18 17:56:49'), (84,'微信菜单编辑','微信菜单编辑','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"菜单名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1590118075352},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入菜单名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"name\"},{\"__config__\":{\"label\":\"规则状态\",\"showLabel\":true,\"labelWidth\":null,\"tag\":\"el-select\",\"tagIcon\":\"select\",\"layout\":\"colFormItem\",\"span\":24,\"required\":true,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/select\",\"formId\":103,\"renderKey\":1590118119244},\"__slot__\":{\"options\":[{\"label\":\"关键字\",\"value\":1},{\"label\":\"跳转网页\",\"value\":2},{\"label\":\"小程序\",\"value\":3}]},\"placeholder\":\"请选择规则状态\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"disabled\":false,\"filterable\":false,\"multiple\":false,\"__vModel__\":\"type\"},{\"__config__\":{\"label\":\"关键字\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1590118097394},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入关键字\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"key\"}]}','2020-05-22 11:29:22','2020-05-22 15:56:20'), (85,'testRedioBtn','testRedioBtn','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"单选框组\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":104,\"renderKey\":1590380476713,\"defaultValue\":\"‘0’\"},\"__slot__\":{\"options\":[{\"label\":\"选项一\",\"value\":\"‘0’\"},{\"label\":\"选项二\",\"value\":\"‘1’\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"field104\"}]}','2020-05-25 12:21:54','2020-05-25 12:27:00'), (86,'秒杀配置','秒杀配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":158,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"开始时间(整数小时)\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":101,\"renderKey\":1590387965990},\"placeholder\":\"计数器开始时间(整数小时)\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"field101\"},{\"__config__\":{\"label\":\"持续时间(整数小时)\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":102,\"renderKey\":1590388014422},\"placeholder\":\"计数器持续时间(整数小时)\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"field102\"},{\"__config__\":{\"label\":\"幻灯片\",\"tag\":\"el-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":false,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":103,\"renderKey\":1590388029048},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":false,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"picture-card\",\"multiple\":false,\"__vModel__\":\"field103\"},{\"__config__\":{\"label\":\"排序\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":104,\"renderKey\":1590388040940,\"defaultValue\":0},\"placeholder\":\"排序\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"field104\"},{\"__config__\":{\"label\":\"状态\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":106,\"renderKey\":1590388076282,\"defaultValue\":\"‘0’\"},\"__slot__\":{\"options\":[{\"label\":\"显示\",\"value\":\"‘0’\"},{\"label\":\"隐藏\",\"value\":\"‘1’\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"field106\"}]}','2020-05-25 14:28:50','2020-05-25 18:25:32'), (87,'签到','签到','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"显示标题\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"title\",\"placeholder\":\"请输入显示标题显示标题显示标题显示标题显示标题显示标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"el-icon-mobile\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"第几天\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":127,\"renderKey\":1590647892129,\"defaultValue\":1},\"placeholder\":\"第几天第几天\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"day\",\"min\":0},{\"__config__\":{\"label\":\"积分\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":129,\"renderKey\":1590649451776,\"defaultValue\":1},\"placeholder\":\"积分值\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"integral\",\"min\":1},{\"__config__\":{\"label\":\"经验\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":128,\"renderKey\":1590649448797,\"defaultValue\":1},\"placeholder\":\"经验值\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"experience\"}]}','2020-05-28 14:33:02','2020-05-28 15:07:25'), (89,'个人中心菜单','个人中心菜单','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"菜单名\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"name\",\"placeholder\":\"请输入菜单名菜单名\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":11,\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"图标(48*48)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":105,\"renderKey\":1596072707659},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"pic\"},{\"__config__\":{\"label\":\"小程序链接\",\"showLabel\":true,\"labelWidth\":null,\"tag\":\"el-select\",\"tagIcon\":\"select\",\"layout\":\"colFormItem\",\"span\":24,\"required\":true,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/select\",\"formId\":142,\"renderKey\":1591060899296},\"__slot__\":{\"options\":[{\"label\":\"地址管理\",\"value\":\"/pages/users/user_address_list/index\"},{\"label\":\"会员中心\",\"value\":\"/pages/users/user_vip/index\"},{\"label\":\"砍价记录\",\"value\":\"/pages/activity/bargain/index\"},{\"label\":\"推广中心\",\"value\":\"/pages/users/user_spread_user/index\"},{\"label\":\"我的余额\",\"value\":\"/pages/users/user_money/index\"},{\"label\":\"我的收藏\",\"value\":\"/pages/users/user_goods_collection/index\"},{\"label\":\"优惠券\",\"value\":\"/pages/users/user_coupon/index\"},{\"label\":\"后台订单管理\",\"value\":\"/pages/admin/order/index\"},{\"label\":\"联系客服\",\"value\":\"/pages/service/index\"},{\"label\":\"订单核销\",\"value\":\"/pages/admin/order_cancellation/index\"}]},\"placeholder\":\"请选择小程序跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"disabled\":false,\"filterable\":true,\"multiple\":false,\"__vModel__\":\"url\"},{\"__config__\":{\"label\":\"公众号链接\",\"showLabel\":true,\"labelWidth\":null,\"tag\":\"el-select\",\"tagIcon\":\"select\",\"layout\":\"colFormItem\",\"span\":24,\"required\":true,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/select\",\"formId\":140,\"renderKey\":1591064071606},\"__slot__\":{\"options\":[{\"label\":\"地址管理\",\"value\":\"/pages/users/user_address_list/index\"},{\"label\":\"会员中心\",\"value\":\"/pages/users/user_vip/index\"},{\"label\":\"砍价记录\",\"value\":\"/pages/activity/bargain/index\"},{\"label\":\"推广中心\",\"value\":\"/pages/users/user_spread_user/index\"},{\"label\":\"我的余额\",\"value\":\"/pages/users/user_money/index\"},{\"label\":\"我的收藏\",\"value\":\"/pages/users/user_goods_collection/index\"},{\"label\":\"优惠券\",\"value\":\"/pages/users/user_coupon/index\"},{\"label\":\"后台订单管理\",\"value\":\"/pages/admin/order/index\"},{\"label\":\"联系客服\",\"value\":\"/pages/service/index\"},{\"label\":\"订单核销\",\"value\":\"/pages/admin/order_cancellation/index\"}]},\"placeholder\":\"请选择跳转链接公众号链接公众号链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"disabled\":false,\"filterable\":true,\"multiple\":false,\"__vModel__\":\"wap_url\"}]}','2020-06-02 09:24:19','2020-07-30 09:32:05'), (90,'个人中心轮播图','个人中心轮播图','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"自定义上传\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":102,\"renderKey\":1597289113769},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"pic\"},{\"__config__\":{\"label\":\"跳转链接\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":140,\"renderKey\":1591064520353},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入跳转跳转链接跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"url\"}]}','2020-06-02 10:24:06','2020-08-13 11:25:22'), (91,'首页精品推荐benner图','首页精品推荐benner图','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"标题\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"name\",\"placeholder\":\"请输入标题标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"跳转链接\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1591065625767},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"url\",\"placeholder\":\"请输入跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"图片(710*280)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":\"\",\"showLabel\":true,\"labelWidth\":130,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":101,\"renderKey\":1597286116626},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"pic\"}]}','2020-06-02 10:41:29','2020-08-13 10:36:05'), (92,'首发新品推荐Banner图片','首发新品推荐Banner图片','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"标题\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"name\",\"placeholder\":\"请输入标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"跳转链接\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1591065625767},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"url\",\"placeholder\":\"请输入跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"图片(710*280)\",\"tag\":\"el-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":120,\"required\":false,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":103,\"renderKey\":1591065640234},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":false,\"accept\":\"image/*\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"picture\",\"multiple\":false,\"__vModel__\":\"pic\"}]}','2020-06-02 10:41:29','2020-06-02 17:58:37'), (93,'首页促销单品推荐Banner图片','首页促销单品推荐Banner图片','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"标题\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"name\",\"placeholder\":\"请输入标题标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"跳转链接\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1591065625767},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"url\",\"placeholder\":\"请输入跳转链接跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"图片(710*280)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":130,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":101,\"renderKey\":1597286206728},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"pic\"}]}','2020-06-02 10:41:29','2020-08-13 10:37:37'), (94,'热门榜单推荐Banner图片','热门榜单推荐Banner图片','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"标题\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"name\",\"placeholder\":\"请输入标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"跳转链接\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1591065625767},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"url\",\"placeholder\":\"请输入跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"图片(710*280)\",\"tag\":\"el-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":120,\"required\":false,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":103,\"renderKey\":1591065640234},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":false,\"accept\":\"image/*\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"picture\",\"multiple\":false,\"__vModel__\":\"pic\"}]}','2020-06-02 10:41:29','2020-06-02 10:58:41'), (95,'首页banner滚动图','首页banner滚动图','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"标题\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"name\",\"placeholder\":\"请输入标题标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"跳转链接\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1591065625767},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"url\",\"placeholder\":\"请输入跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"图片(710*280)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":130,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":102,\"renderKey\":1597286491734},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"pic\"}]}','2020-06-02 10:41:29','2020-08-13 10:43:11'), (96,'导航模块','导航模块','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"标题\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"name\",\"placeholder\":\"请输入标题标题标题标题标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"图片\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":101,\"renderKey\":1597287354047},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"pic\"},{\"__config__\":{\"label\":\"跳转链接\",\"showLabel\":true,\"labelWidth\":null,\"tag\":\"el-select\",\"tagIcon\":\"select\",\"layout\":\"colFormItem\",\"span\":24,\"required\":true,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/select\",\"formId\":102,\"renderKey\":1591080591082},\"__slot__\":{\"options\":[{\"label\":\"商城首页\",\"value\":\"/pages/index/index\"},{\"label\":\"个人推广\",\"value\":\"/pages/user_spread_user/index\"},{\"label\":\"优惠券\",\"value\":\"/pages/users/user_get_coupon/index\"},{\"label\":\"个人中心\",\"value\":\"/pages/user/user\"},{\"label\":\"秒杀列表\",\"value\":\"/pages/activity/goods_seckill/index\"},{\"label\":\"拼团列表页\",\"value\":\"/pages/activity/goods_combination/index\"},{\"label\":\"砍价列表\",\"value\":\"/pages/activity/goods_bargain/index\"},{\"label\":\"分类页面\",\"value\":\"/pages/goods_cate/goods_cate\"},{\"label\":\"地址列表\",\"value\":\"/pages/users/user_address_list/index\"},{\"label\":\"提现页面\",\"value\":\"/pages/user_cash/index\"},{\"label\":\"推广统计\",\"value\":\"/pages/promoter-list/index\"},{\"label\":\"账户金额\",\"value\":\"/pages/users/user_goods_collection/index\"},{\"label\":\"推广二维码页面\",\"value\":\"/pages/promotion-card/promotion-card\"},{\"label\":\"购物车页面\",\"value\":\"/pages/order_addcart/order_addcart\"},{\"label\":\"订单列表页面\",\"value\":\"/pages/users/order_list/index\"},{\"label\":\"文章列表页\",\"value\":\"/pages/news_list/index\"},{\"label\":\"我要签到\",\"value\":\"/pages/users/user_sgin/index\"},{\"label\":\"我的收藏\",\"value\":\"/pages/users/user_goods_collection/index\"}]},\"placeholder\":\"请选择跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"disabled\":false,\"filterable\":true,\"multiple\":false,\"__vModel__\":\"url\"},{\"__config__\":{\"label\":\"底部菜单\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":103,\"renderKey\":1591080806108,\"defaultValue\":1},\"__slot__\":{\"options\":[{\"label\":\"是\",\"value\":1},{\"label\":\"否\",\"value\":2}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"show\"}]}','2020-06-02 10:41:29','2020-08-13 10:56:06'), (97,'首页滚动新闻','首页滚动新闻','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"滚动文字\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"info\",\"placeholder\":\"请输入滚动文字滚动文字\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"跳转链接\",\"showLabel\":true,\"labelWidth\":120,\"tag\":\"el-select\",\"tagIcon\":\"select\",\"layout\":\"colFormItem\",\"span\":24,\"required\":true,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/select\",\"formId\":102,\"renderKey\":1591080591082},\"__slot__\":{\"options\":[{\"label\":\"商城首页\",\"value\":\"/pages/index/index\"},{\"label\":\"个人推广\",\"value\":\"/pages/user_spread_user/index\"},{\"label\":\"优惠券\",\"value\":\"/pages/users/user_get_coupon/index\"},{\"label\":\"个人中心\",\"value\":\"/pages/user/user\"},{\"label\":\"秒杀列表\",\"value\":\"/pages/activity/goods_seckill/index\"},{\"label\":\"拼团列表页\",\"value\":\"/pages/activity/goods_combination/index\"},{\"label\":\"砍价列表\",\"value\":\"/pages/activity/goods_bargain/index\"},{\"label\":\"分类页面\",\"value\":\"/pages/goods_cate/goods_cate\"},{\"label\":\"地址列表\",\"value\":\"/pages/users/user_address_list/index\"},{\"label\":\"提现页面\",\"value\":\"/pages/user_cash/index\"},{\"label\":\"推广统计\",\"value\":\"/pages/promoter-list/index\"},{\"label\":\"账户金额\",\"value\":\"/pages/users/user_goods_collection/index\"},{\"label\":\"推广二维码页面\",\"value\":\"/pages/promotion-card/promotion-card\"},{\"label\":\"购物车页面\",\"value\":\"/pages/order_addcart/order_addcart\"},{\"label\":\"订单列表页面\",\"value\":\"/pages/users/order_list/index\"},{\"label\":\"文章列表页\",\"value\":\"/pages/news_list/index\"}]},\"placeholder\":\"请选择跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"disabled\":false,\"filterable\":true,\"multiple\":false,\"__vModel__\":\"url\"},{\"__config__\":{\"label\":\"底部菜单\",\"labelWidth\":120,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":103,\"renderKey\":1591080806108,\"defaultValue\":1},\"__slot__\":{\"options\":[{\"label\":\"是\",\"value\":1},{\"label\":\"否\",\"value\":2}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"show\"}]}','2020-06-02 10:41:29','2020-08-13 10:35:02'), (98,'首页活动区域图片','首页活动区域图片','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"图片(710*280)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":130,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":102,\"renderKey\":1597286612904},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"image\"},{\"__config__\":{\"label\":\"标题\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"title\",\"placeholder\":\"请输入标题标题标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"简介\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1591081196107},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"info\",\"placeholder\":\"请输入简介\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"跳转链接\",\"showLabel\":true,\"labelWidth\":130,\"tag\":\"el-select\",\"tagIcon\":\"select\",\"layout\":\"colFormItem\",\"span\":24,\"required\":true,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/select\",\"formId\":102,\"renderKey\":1591080591082},\"__slot__\":{\"options\":[{\"label\":\"秒杀列表\",\"value\":\"/pages/activity/goods_seckill/index\"},{\"label\":\"拼团列表页\",\"value\":\"/pages/activity/goods_combination/index\"},{\"label\":\"砍价列表\",\"value\":\"/pages/activity/goods_bargain/index\"}]},\"placeholder\":\"请选择跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"disabled\":false,\"filterable\":true,\"multiple\":false,\"__vModel__\":\"link\"}]}','2020-06-02 10:41:29','2020-08-13 10:44:02'), (99,'首页超值爆款','首页超值爆款','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"图片(710*280)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":130,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":101,\"renderKey\":1597286019454},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"image\"},{\"__config__\":{\"label\":\"标题\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"title\",\"placeholder\":\"请输入标题标题标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"简介\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1591081196107},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"info\",\"placeholder\":\"请输入简介\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"简介2\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1591081406040},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"info\",\"placeholder\":\"请输入2简介2\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"类型\",\"showLabel\":true,\"labelWidth\":130,\"tag\":\"el-select\",\"tagIcon\":\"select\",\"layout\":\"colFormItem\",\"span\":24,\"required\":true,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/select\",\"formId\":102,\"renderKey\":1591080591082},\"__slot__\":{\"options\":[{\"label\":\"精品推荐\",\"value\":1},{\"label\":\"热门榜单\",\"value\":2},{\"label\":\"首发新品\",\"value\":3},{\"label\":\"促销单品\",\"value\":4}]},\"placeholder\":\"请选择类型\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"disabled\":false,\"filterable\":true,\"multiple\":false,\"__vModel__\":\"type\"}]}','2020-06-02 10:41:29','2020-08-13 10:34:41'), (100,'首页文字配置','首页文字配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"快速选择简介\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"fast_info\",\"placeholder\":\"请输入快速选择简介\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"精品推荐简介\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1591081579041},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"bast_info\",\"placeholder\":\"请输入精品推荐简介\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"首发新品简介\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1591081598503},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"first_info\",\"placeholder\":\"请输入首发新品简介\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"促销单品简介\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1591081599048},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"sales_info\",\"placeholder\":\"请输入促销单品简介\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false}]}','2020-06-02 15:07:11','2020-06-02 15:07:11'), (101,'首页精品推荐benner图','首页精品推荐benner图','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"图片\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":101,\"renderKey\":1597285983911},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"img\"},{\"__config__\":{\"label\":\"描述\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1591083877308},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入描述\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"comment\"},{\"__config__\":{\"label\":\"跳转链接\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1591083894228},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"link\"}]}','2020-06-02 15:45:01','2020-08-13 10:33:18'), (102,'热门搜索','热门搜索','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"标签\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"title\",\"placeholder\":\"请输入标签\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":11,\"show-word-limit\":true,\"readonly\":false,\"disabled\":false}]}','2020-06-03 11:34:29','2020-06-03 11:34:29'), (103,'充值金额设置','设置充值金额额度选择','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"售价\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1591773075965},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入售价\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"price\"},{\"__config__\":{\"label\":\"赠送\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1591773074670},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入赠送\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"give_money\"}]}','2020-06-10 15:12:15','2020-06-10 15:12:15'), (104,'修改订单','修改订单','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"订单编号\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"订单编号订单编号订单编号\",\"style\":{\"width\":\"50%\"},\"clearable\":false,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":true,\"disabled\":false,\"__vModel__\":\"orderId\"},{\"__config__\":{\"label\":\"商品总价\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":130,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":108,\"renderKey\":1592186382632,\"defaultValue\":0},\"placeholder\":\"商品总价\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"totalPrice\",\"min\":0},{\"__config__\":{\"label\":\"原始邮费\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":130,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":104,\"renderKey\":1592186354404,\"defaultValue\":0},\"placeholder\":\"原始邮费\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"totalPostage\",\"min\":0},{\"__config__\":{\"label\":\"实际支付金额\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":130,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":106,\"renderKey\":1592186379453,\"defaultValue\":0},\"placeholder\":\"实际支付金额\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"payPrice\",\"min\":0},{\"__config__\":{\"label\":\"实际支付邮费\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":130,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":107,\"renderKey\":1592186381287,\"defaultValue\":0},\"placeholder\":\"实际支付邮费\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"payPostage\",\"min\":0},{\"__config__\":{\"label\":\"赠送积分\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":130,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":105,\"renderKey\":1592186371746,\"defaultValue\":0},\"placeholder\":\"赠送积分\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"gainIntegral\",\"min\":0}]}','2020-06-15 10:11:19','2020-06-15 11:17:22'), (105,'模板消息','模板消息','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"模板类型\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":107,\"renderKey\":1592281633151,\"defaultValue\":0},\"__slot__\":{\"options\":[{\"label\":\"订阅消息\",\"value\":0},{\"label\":\"微信模板消息\",\"value\":1}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"status\"},{\"__config__\":{\"label\":\"模板编号\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"tempKey\",\"placeholder\":\"请输入模板编号\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"模板ID\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":106,\"renderKey\":1592281492122},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入模板ID\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"tempId\"},{\"__config__\":{\"label\":\"模板名\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":105,\"renderKey\":1592281490129},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入模板名\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"name\"},{\"__config__\":{\"label\":\"回复内容\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":104,\"renderKey\":1592281487212},\"type\":\"textarea\",\"placeholder\":\"请输入回复内容\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"100%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"content\"},{\"__config__\":{\"label\":\"状态\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":109,\"renderKey\":1592289933100,\"defaultValue\":0},\"__slot__\":{\"options\":[{\"label\":\"开启\",\"value\":1},{\"label\":\"关闭\",\"value\":0}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"status\"}]}','2020-06-16 12:28:38','2020-06-16 14:47:36'), (106,'拒绝退款','拒绝退款','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"拒绝退款单号\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"orderId\",\"placeholder\":\"请输入拒绝退款单号拒绝退款单号\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":true,\"disabled\":false},{\"__config__\":{\"label\":\"不退款原因\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":112,\"renderKey\":1592451273684},\"type\":\"textarea\",\"placeholder\":\"请输入不退款原因\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"100%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"reason\"}]}','2020-06-18 11:36:28','2020-06-18 11:45:56'), (107,'立即退款','立即退款','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"退款单号\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"orderId\",\"placeholder\":\"请输入退款单号\",\"style\":{\"width\":\"50%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":true,\"disabled\":false},{\"__config__\":{\"label\":\"退款金额\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":110,\"renderKey\":1592452495718},\"placeholder\":\"退款金额\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"amount\"},{\"__config__\":{\"label\":\"单选框组\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":111,\"renderKey\":1592452499289,\"defaultValue\":1},\"__slot__\":{\"options\":[{\"label\":\"直接退款\",\"value\":1},{\"label\":\"退款后,返回原状态\",\"value\":2}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"type\"}]}','2020-06-18 11:57:03','2020-06-18 11:58:55'), (108,'文件上传-本地配置','文件上传-本地配置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"本地地址\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":false,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1592476026393},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入本地地址\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"localUploadUrl\"}]}','2020-06-18 18:28:13','2020-06-18 18:28:13'), (109,'积分设置','积分设置','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":23,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"积分抵用比例(1积分抵多少金额)\",\"labelWidth\":350,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"defaultValue\":1,\"required\":true,\"layout\":\"colFormItem\",\"span\":23,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"integral_ratio\",\"placeholder\":\"请输入积分抵用比例积分抵用比例(1积分抵多少金额)\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":11,\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"下单赠送积分比例(实际支付1元赠送多少积分)\",\"labelWidth\":350,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"defaultValue\":1,\"required\":true,\"layout\":\"colFormItem\",\"span\":23,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":105,\"renderKey\":1594871750052},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"order_give_integral\",\"placeholder\":\"请输入下单赠送积分比例(实际支付1元赠送多少积分)\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":11,\"show-word-limit\":true,\"readonly\":false,\"disabled\":false}]}','2020-07-16 12:01:34','2020-07-22 17:47:16'), (110,'短信模板消息','短信模板消息','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"模板名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":140,\"renderKey\":1595402251597},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入模板名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"title\"},{\"__config__\":{\"label\":\"模板内容\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":141,\"renderKey\":1595402320867,\"defaultValue\":\"\"},\"type\":\"textarea\",\"placeholder\":\"请输入模板内容\",\"autosize\":{\"minRows\":4},\"style\":{\"width\":\"100%\"},\"maxlength\":null,\"show-word-limit\":true,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"content\"},{\"__config__\":{\"label\":\"模板类型\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":142,\"renderKey\":1595402411016,\"defaultValue\":1},\"__slot__\":{\"options\":[{\"label\":\"验证码\",\"value\":1},{\"label\":\"通知\",\"value\":2},{\"label\":\"推广\",\"value\":3}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"type\"}]}','2020-07-22 15:21:26','2020-07-22 15:21:26'), (111,'短信开关','短信开关','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":300,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":16,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"支付成功提醒开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":109,\"renderKey\":1595407327280,\"defaultValue\":0},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":0},{\"label\":\"开启\",\"value\":1}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"lowerOrderSwitch\"},{\"__config__\":{\"label\":\"发货提醒开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":102,\"renderKey\":1595407325650,\"defaultValue\":0},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":0},{\"label\":\"开启\",\"value\":1}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"deliverGoodsSwitch\"},{\"__config__\":{\"label\":\"确认收货提醒开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":103,\"renderKey\":1595407326064,\"defaultValue\":0},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":0},{\"label\":\"开启\",\"value\":1}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"confirmTakeOverSwitch\"},{\"__config__\":{\"label\":\"用户下单管理员提醒开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":104,\"renderKey\":1595407326261,\"defaultValue\":0},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":0},{\"label\":\"开启\",\"value\":1}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"adminLowerOrderSwitch\"},{\"__config__\":{\"label\":\"用户支付成功管理员提醒开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":105,\"renderKey\":1595407326439,\"defaultValue\":0},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":0},{\"label\":\"开启\",\"value\":1}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"adminPaySuccessSwitch\"},{\"__config__\":{\"label\":\"用户退款管理员提醒开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":106,\"renderKey\":1595407326609,\"defaultValue\":0},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":0},{\"label\":\"开启\",\"value\":1}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"adminConfirmTakeOverSwitch\"},{\"__config__\":{\"label\":\"用户确认收货管理员短信提醒\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":107,\"renderKey\":1595407326779,\"defaultValue\":0},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":0},{\"label\":\"开启\",\"value\":1}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"adminRefundSwitch\"},{\"__config__\":{\"label\":\"改价短信提醒开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":108,\"renderKey\":1595407326924,\"defaultValue\":0},\"__slot__\":{\"options\":[{\"label\":\"关闭\",\"value\":0},{\"label\":\"开启\",\"value\":1}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"priceRevisionSwitch\"}]}','2020-07-22 17:00:03','2020-07-22 17:00:03'), (112,'stivepeimTestSelfForm','stivepeimTestSelfForm','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"单行文本\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":123,\"renderKey\":1595575581830,\"defaultValue\":\"1111\"},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"test\"},{\"__config__\":{\"label\":\"自定义上传1\",\"tag\":\"self-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":129,\"renderKey\":1595642824243},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"field129\"},{\"__config__\":{\"label\":\"自定义上传2\",\"tag\":\"self-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":130,\"renderKey\":1595643990791},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"field130\"},{\"__config__\":{\"label\":\"自定义上传3\",\"tag\":\"self-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":132,\"renderKey\":1595646780803},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":true,\"__vModel__\":\"field132\"},{\"__config__\":{\"label\":\"富文本编辑器\",\"tag\":\"ueditor-from\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":false,\"span\":24,\"showTip\":false,\"regList\":[],\"changeTag\":true,\"formId\":137,\"renderKey\":1595989301157},\"disabled\":false,\"__vModel__\":\"field137\"},{\"__config__\":{\"label\":\"上传文件\",\"tag\":\"upload-file\",\"tagIcon\":\"uploadPicture\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":116,\"renderKey\":1596175243692},\"__slot__\":{\"list-type\":true},\"name\":\"upfile\",\"__vModel__\":\"field116\"}]}','2020-07-24 14:48:28','2020-07-31 14:00:46'), (113,'推广分享海报','推广分享海报','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"title\",\"placeholder\":\"请输入名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"背景图\",\"tag\":\"self-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":true,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":104,\"renderKey\":1596006415029},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"pic\"}]}','2020-07-29 15:07:42','2020-07-29 15:07:42'), (114,'后台登录页轮播图','后台登录页轮播图','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"轮播图\",\"tag\":\"self-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":101,\"renderKey\":1596017879033},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"pic\"}]}','2020-07-29 18:15:46','2020-07-29 18:18:11'), (115,'订单详情状态图','订单详情状态图','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"订单状态\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"orderStatus\",\"placeholder\":\"0=未支付,1=待发货,2=待收货,3=待评价,4=已完成\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"icon地址\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1596022715722},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"url\",\"placeholder\":\"\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false}]}','2020-07-29 19:40:23','2020-07-29 19:49:40'), (116,'测试配置表单','测试自定义表单','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"网站名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":126,\"renderKey\":1595658466046},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入网站名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"site_name\"},{\"__config__\":{\"label\":\"网站地址\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":111,\"renderKey\":1597048570961},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"site_url\",\"placeholder\":\"webSiet网站地址网站地址\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"Api地址\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"api_url\",\"placeholder\":\"webSiet网站地址Api地址\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"后台LOGO(左上角logo,建议尺寸[170*50])\",\"tag\":\"self-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":124,\"renderKey\":1595658064081},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"picture-card\",\"multiple\":false,\"__vModel__\":\"site_logo\"},{\"__config__\":{\"label\":\"登录页LOGO\",\"tag\":\"self-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":128,\"renderKey\":1595658697800},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"login_logo\"},{\"__config__\":{\"label\":\"后台LOGO-正方形(尺寸180*180)\",\"tag\":\"self-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":127,\"renderKey\":1595658695317},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"site_logo_square\"},{\"__config__\":{\"label\":\"登录页背景图\",\"tag\":\"self-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":152,\"renderKey\":1596017451389},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"admin_login_bg_pic\"},{\"__config__\":{\"label\":\"SEO标题\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1589534140652},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入SEO标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"seo_title\"},{\"__config__\":{\"label\":\"新闻幻灯片数量上限\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":116,\"renderKey\":1589941416644},\"placeholder\":\"新闻幻灯片数量上限\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"news_slides_limit\"}]}','2020-08-11 14:26:14','2020-08-11 14:26:14'), (117,'测试表单','测试','{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"多行文本\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":101,\"renderKey\":1597127427203},\"type\":\"textarea\",\"placeholder\":\"请输入多行文本\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"100%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"field101\"}]}','2020-08-11 14:30:40','2020-08-11 14:30:40'), (118,'测试001','测试','{\"formRef\":\"user_info\",\"formModel\":\"fromData\",\"size\":\"mini\",\"labelPosition\":\"top\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":50,\"disabled\":false,\"span\":24,\"formBtns\":true,\"unFocusedComponentBorder\":true,\"fields\":[{\"__config__\":{\"label\":\"评分\",\"tag\":\"el-rate\",\"tagIcon\":\"rate\",\"defaultValue\":0,\"span\":24,\"showLabel\":true,\"labelWidth\":null,\"layout\":\"colFormItem\",\"required\":true,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/rate\",\"formId\":103,\"renderKey\":1597203026711},\"style\":{},\"max\":10,\"allow-half\":false,\"show-text\":false,\"show-score\":false,\"disabled\":false,\"__vModel__\":\"field103\"}]}','2020-08-11 14:40:01','2020-08-12 11:30:47'); /*!40000 ALTER TABLE `eb_system_form_temp` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_system_group # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_group`; CREATE TABLE `eb_system_group` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '组合数据ID', `name` varchar(50) NOT NULL DEFAULT '' COMMENT '数据组名称', `info` varchar(256) NOT NULL DEFAULT '' COMMENT '简介', `form_id` int(11) NOT NULL DEFAULT '0' COMMENT 'form 表单 id', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='组合数据表'; LOCK TABLES `eb_system_group` WRITE; /*!40000 ALTER TABLE `eb_system_group` DISABLE KEYS */; INSERT INTO `eb_system_group` (`id`, `name`, `info`, `form_id`, `create_time`, `update_time`) VALUES (37,'中部推荐banner图','中部推荐banner图',95,'2020-05-15 10:38:22','2020-08-13 14:56:43'), (38,'砍价列表页左上小图标','砍价列表页左上小图标',0,'2020-05-15 10:38:22','2020-05-15 10:38:32'), (47,'首页分类图标','首页分类图标',66,'2020-05-15 10:38:22','2020-05-16 17:04:38'), (48,'首页banner滚动图','首页banner滚动图',95,'2020-05-15 10:38:22','2020-06-02 14:46:40'), (49,'秒杀时间段','秒杀时间段',0,'2020-05-15 10:38:22','2020-05-15 10:38:32'), (50,'首页滚动新闻','首页滚动新闻',0,'2020-05-15 10:38:22','2020-05-15 10:38:32'), (51,'首页活动区域图片','首页活动区域图片',0,'2020-05-15 10:38:22','2020-05-15 10:38:32'), (52,'精品推荐benner图','精品推荐benner图',91,'2020-05-15 10:38:22','2020-08-13 14:56:54'), (53,'订单详情状态图','订单详情状态图',115,'2020-05-15 10:38:22','2020-07-29 19:41:30'), (54,'个人中心菜单','个人中心菜单',89,'2020-05-15 10:38:22','2020-06-02 09:24:36'), (55,'签到天数配置','签到天数配置',87,'2020-05-15 10:38:22','2020-05-28 14:33:25'), (56,'热门搜索','热门搜索',0,'2020-05-15 10:38:22','2020-05-15 10:38:32'), (57,'热门榜单推荐图片','热门榜单推荐图片',94,'2020-05-15 10:38:22','2020-06-02 10:58:51'), (58,'首发新品推荐图片','首发新品推荐图片',92,'2020-05-15 10:38:22','2020-06-02 10:59:23'), (59,'首页促销单品推荐图片','首页促销单品推荐图片',93,'2020-05-15 10:38:22','2020-06-02 10:59:35'), (60,'分享海报','分享海报',113,'2020-05-15 10:38:22','2020-07-29 15:08:03'), (61,'首页文字配置','首页文字配置',0,'2020-05-15 10:38:22','2020-05-15 10:38:32'), (62,'充值金额设置','设置充值金额额度选择',103,'2020-05-15 10:38:22','2020-06-10 15:12:31'), (64,'城市编辑','城市编辑',70,'2020-05-18 16:43:38','2020-05-18 16:43:38'), (65,'个人中心轮播图','个人中心轮播图',90,'2020-06-02 10:25:03','2020-06-02 10:25:03'), (67,'首页导航','首页导航',96,'2020-06-02 14:54:41','2020-06-02 14:54:41'), (68,'首页滚动新闻','首页滚动新闻',97,'2020-06-02 18:00:47','2020-06-02 18:00:47'), (69,'首页活动区域图片','首页活动区域图片',98,'2020-06-02 18:01:00','2020-06-02 18:01:00'), (70,'首页超值爆款','首页超值爆款',99,'2020-06-02 18:01:10','2020-06-02 18:01:10'), (71,'热门搜索','热门搜索',102,'2020-06-03 11:34:42','2020-06-03 11:34:42'), (72,'后台登录页轮播图','后台登录页轮播图',114,'2020-07-29 18:16:11','2020-07-29 18:16:11'); /*!40000 ALTER TABLE `eb_system_group` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_system_group_data # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_group_data`; CREATE TABLE `eb_system_group_data` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '组合数据详情ID', `gid` int(11) NOT NULL DEFAULT '0' COMMENT '对应的数据组id', `value` text NOT NULL COMMENT '数据组对应的数据值(json数据)', `sort` int(11) NOT NULL DEFAULT '0' COMMENT '数据排序', `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态(1:开启;2:关闭;)', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='组合数据详情表'; LOCK TABLES `eb_system_group_data` WRITE; /*!40000 ALTER TABLE `eb_system_group_data` DISABLE KEYS */; INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (39,55,'{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"第一天\"},{\"name\":\"day\",\"title\":\"day\",\"value\":\"1\"},{\"name\":\"integral\",\"title\":\"integral\",\"value\":\"10\"},{\"name\":\"experience\",\"title\":\"experience\",\"value\":\"10\"}],\"id\":87,\"sort\":1,\"status\":true}',1,1,'2020-05-28 14:34:00','2020-05-28 15:08:02'), (40,55,'{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"第二天\"},{\"name\":\"day\",\"title\":\"day\",\"value\":\"2\"},{\"name\":\"integral\",\"title\":\"integral\",\"value\":\"20\"},{\"name\":\"experience\",\"title\":\"experience\",\"value\":\"20\"}],\"id\":87,\"sort\":2,\"status\":true}',2,1,'2020-05-28 14:34:09','2020-05-28 15:08:08'), (41,55,'{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"第三天\"},{\"name\":\"day\",\"title\":\"day\",\"value\":\"3\"},{\"name\":\"integral\",\"title\":\"integral\",\"value\":\"30\"},{\"name\":\"experience\",\"title\":\"experience\",\"value\":\"30\"}],\"id\":87,\"sort\":3,\"status\":true}',3,1,'2020-05-28 14:34:14','2020-05-28 15:08:14'), (42,55,'{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"第四天\"},{\"name\":\"day\",\"title\":\"day\",\"value\":\"4\"},{\"name\":\"integral\",\"title\":\"integral\",\"value\":\"40\"},{\"name\":\"experience\",\"title\":\"experience\",\"value\":\"40\"}],\"id\":87,\"sort\":4,\"status\":true}',4,1,'2020-05-28 14:34:19','2020-05-28 15:08:20'), (43,55,'{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"第五天\"},{\"name\":\"day\",\"title\":\"day\",\"value\":\"5\"},{\"name\":\"integral\",\"title\":\"integral\",\"value\":\"50\"},{\"name\":\"experience\",\"title\":\"experience\",\"value\":\"50\"}],\"id\":87,\"sort\":5,\"status\":true}',5,1,'2020-05-28 14:34:34','2020-05-28 15:08:26'), (44,55,'{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"第六天\"},{\"name\":\"day\",\"title\":\"day\",\"value\":\"6\"},{\"name\":\"integral\",\"title\":\"integral\",\"value\":\"60\"},{\"name\":\"experience\",\"title\":\"experience\",\"value\":\"60\"}],\"id\":87,\"sort\":6,\"status\":true}',6,1,'2020-05-28 14:34:39','2020-05-28 15:08:33'), (45,55,'{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"奖励\"},{\"name\":\"day\",\"title\":\"day\",\"value\":\"7\"},{\"name\":\"integral\",\"title\":\"integral\",\"value\":\"100\"},{\"name\":\"experience\",\"title\":\"experience\",\"value\":\"100\"}],\"id\":87,\"sort\":7,\"status\":true}',7,1,'2020-05-28 14:35:03','2020-05-28 17:06:31'), (57,54,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"会员中心\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/481e308eeabf4910823b3558ccc19403mv8yjufemd.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/user_vip/index\"},{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/users/user_vip/index\"}],\"id\":89,\"sort\":1,\"status\":true}',1,1,'2020-06-02 09:36:26','2020-08-13 11:16:39'), (58,54,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"砍价记录\"},{\"name\":\"pic\",\"title\":\"pic\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/activity/bargain/index\"},{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/activity/bargain/index\"}],\"id\":89,\"sort\":2,\"status\":false}',2,0,'2020-06-02 09:36:45','2020-07-29 21:54:07'), (59,54,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"我的推广\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/f09a614eca0546748e5e71b565e8d662kxkezi9bbv.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/user_spread_user/index\"},{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/users/user_spread_user/index\"}],\"id\":89,\"sort\":3,\"status\":true}',3,1,'2020-06-02 09:37:12','2020-08-13 11:17:04'), (60,54,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"我的余额\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/9e9c5129966244b78cfb68778fbd7a81k6stba15mw.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/user_money/index\"},{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/users/user_money/index\"}],\"id\":89,\"sort\":4,\"status\":true}',4,1,'2020-06-02 09:37:28','2020-08-13 11:17:17'), (61,54,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"地址信息\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/8529e290c5874ddd82fcf7b104955949izoulykd53.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/user_address_list/index\"},{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/users/user_address_list/index\"}],\"id\":89,\"sort\":5,\"status\":true}',5,1,'2020-06-02 09:37:39','2020-08-13 11:17:40'), (62,54,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"我的收藏\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/278a0afed5af4f3bbdd4924eff96a6adqa5k51i1cb.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/user_goods_collection/index\"},{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/users/user_goods_collection/index\"}],\"id\":89,\"sort\":6,\"status\":true}',6,1,'2020-06-02 09:37:57','2020-08-13 11:17:54'), (63,54,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"优惠券\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/5f56e229217a4c38b3da0e3a53ecc667o478oy5v4v.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/user_coupon/index\"},{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/users/user_coupon/index\"}],\"id\":89,\"sort\":7,\"status\":true}',7,1,'2020-06-02 09:38:18','2020-08-13 11:18:16'), (64,54,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"联系客服\"},{\"name\":\"pic\",\"title\":\"pic\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/service/index\"},{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/service/index\"}],\"id\":89,\"sort\":8,\"status\":false}',8,0,'2020-06-02 09:38:36','2020-07-29 21:55:09'), (65,54,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"统计管理\"},{\"name\":\"pic\",\"title\":\"pic\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/admin/order/index\"},{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/admin/order/index\"}],\"id\":89,\"sort\":9,\"status\":false}',9,0,'2020-06-02 09:38:56','2020-07-29 21:54:17'), (66,54,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"订单核销\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/product/2020/07/31/662ab1af156e4ee6b1242305a939aa68g2l7lbh7as.jpg\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/admin/order_cancellation/index\"},{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/admin/order_cancellation/index\"}],\"id\":89,\"sort\":10,\"status\":false}',10,0,'2020-06-02 09:39:15','2020-07-31 16:27:46'), (68,65,'{\"fields\":[{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/1aeaed1e02e542088c53eaaa38dab6eddyxjgr4n70.jpg\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"www.crmeb.net\"}],\"id\":90,\"sort\":2,\"status\":true}',2,1,'2020-06-02 10:29:03','2020-08-13 13:00:40'), (71,52,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"pro\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/user_vip/index\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/64edb94f67fd46dd9031995ef2be86fca3xpw8y5kz.jpg\"}],\"id\":91,\"sort\":3,\"status\":true}',3,1,'2020-06-02 10:43:33','2020-08-13 12:33:23'), (72,70,'{\"fields\":[{\"name\":\"image\",\"title\":\"image\",\"value\":\"image/maintain/2020/08/13/9c42291970364fcb8d7fdbdaf96900152rpyexrh3s.png\"},{\"name\":\"title\",\"title\":\"title\",\"value\":\"精品推荐\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"猜你喜欢\"},{\"name\":\"type\",\"title\":\"type\",\"value\":\"1\"}],\"id\":99,\"sort\":1,\"status\":true}',1,1,'2020-06-03 09:22:32','2020-08-13 11:38:16'), (73,70,'{\"fields\":[{\"name\":\"image\",\"title\":\"image\",\"value\":\"image/maintain/2020/08/13/e6344b2025ac43e2ad95f83b19b12060s0jfs4vpqe.png\"},{\"name\":\"title\",\"title\":\"title\",\"value\":\"热门榜单\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"好评如云\"},{\"name\":\"type\",\"title\":\"type\",\"value\":\"2\"}],\"id\":99,\"sort\":2,\"status\":true}',2,1,'2020-06-03 09:22:58','2020-08-13 11:40:28'), (74,70,'{\"fields\":[{\"name\":\"image\",\"title\":\"image\",\"value\":\"image/maintain/2020/08/13/6c7b8a2777a743bcac0b4d11465384bejp8n19peeg.png\"},{\"name\":\"title\",\"title\":\"title\",\"value\":\"首发新品\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"最新出炉\"},{\"name\":\"type\",\"title\":\"type\",\"value\":\"3\"}],\"id\":99,\"sort\":3,\"status\":true}',3,1,'2020-06-03 09:23:15','2020-08-13 11:39:30'), (75,70,'{\"fields\":[{\"name\":\"image\",\"title\":\"image\",\"value\":\"image/maintain/2020/08/13/ae7f17f9ebae4c6fbb51772b934d4077xllfw2cd12.png\"},{\"name\":\"title\",\"title\":\"title\",\"value\":\"促销单品\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"多买多省\"},{\"name\":\"type\",\"title\":\"type\",\"value\":\"4\"}],\"id\":99,\"sort\":0,\"status\":true}',0,1,'2020-06-03 09:23:32','2020-08-13 11:37:15'), (78,48,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"pro\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/user_vip/index\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/2e0e4ffe26d045968fe9e6082e7221b5eohjjkkg0a.jpg\"}],\"id\":95,\"sort\":1,\"status\":true}',1,1,'2020-06-03 09:29:54','2020-08-13 14:04:15'), (79,67,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"商品分类\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/91379d2939284e5db2a9cc0915fccf4a6wru3vj2q3.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/goods_cate/goods_cate\"},{\"name\":\"show\",\"title\":\"show\",\"value\":\"1\"}],\"id\":96,\"sort\":1,\"status\":true}',1,1,'2020-06-03 09:33:06','2020-08-13 11:27:31'), (80,67,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"领优惠券\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/e62f702add5043c6af73a95becca0985s0nebb3f3d.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/user_get_coupon/index\"},{\"name\":\"show\",\"title\":\"show\",\"value\":\"2\"}],\"id\":96,\"sort\":2,\"status\":true}',2,1,'2020-06-03 09:33:18','2020-08-13 11:27:49'), (81,67,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"行业资讯\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/6292cc8c10564acbbb7d43eed26ed8798ij2deo3sk.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/news_list/index\"},{\"name\":\"show\",\"title\":\"show\",\"value\":\"2\"}],\"id\":96,\"sort\":3,\"status\":true}',3,1,'2020-06-03 09:33:38','2020-08-13 11:28:02'), (82,67,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"我要签到\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/d4003b6bdbbb4ec2bf93c5f7a6e9f6383fwxssjlwp.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/user_sgin/index\"},{\"name\":\"show\",\"title\":\"show\",\"value\":\"2\"}],\"id\":96,\"sort\":4,\"status\":true}',4,1,'2020-06-03 09:35:33','2020-08-13 11:28:25'), (83,67,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"我的收藏\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/50bed67b30774124a07b8003247243f059fmipd1zd.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/user_goods_collection/index\"},{\"name\":\"show\",\"title\":\"show\",\"value\":\"2\"}],\"id\":96,\"sort\":5,\"status\":true}',5,1,'2020-06-03 09:37:36','2020-08-13 11:28:39'), (84,67,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"拼团活动\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/5f71607a688940eea181dcd1ed6e9f51m1icpzgorz.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/activity/goods_combination/index\"},{\"name\":\"show\",\"title\":\"show\",\"value\":\"2\"}],\"id\":96,\"sort\":6,\"status\":false}',6,0,'2020-06-03 09:37:50','2020-08-13 11:28:55'), (85,67,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"秒杀活动\"},{\"name\":\"pic\",\"title\":\"pic\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/activity/goods_seckill/index\"},{\"name\":\"show\",\"title\":\"show\",\"value\":\"2\"}],\"id\":96,\"sort\":7,\"status\":false}',7,0,'2020-06-03 09:38:01','2020-07-24 15:05:47'), (86,67,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"砍价活动\"},{\"name\":\"pic\",\"title\":\"pic\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/activity/goods_bargain/index\"},{\"name\":\"show\",\"title\":\"show\",\"value\":\"2\"}],\"id\":96,\"sort\":8,\"status\":false}',8,0,'2020-06-03 09:38:13','2020-07-24 15:05:52'), (87,67,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"地址管理\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/2f2a3420ee0945fdb05614691f7beda8oiax27m3yb.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/user_address_list/index\"},{\"name\":\"show\",\"title\":\"show\",\"value\":\"2\"}],\"id\":96,\"sort\":9,\"status\":false}',9,0,'2020-06-03 09:38:29','2020-08-13 11:32:39'), (88,67,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"订单管理\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/af3304699927443db884fe468295cee8oss2xgnb4n.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/order_list/index\"},{\"name\":\"show\",\"title\":\"show\",\"value\":\"2\"}],\"id\":96,\"sort\":10,\"status\":false}',10,0,'2020-06-03 09:38:42','2020-08-13 11:32:36'), (89,68,'{\"fields\":[{\"name\":\"info\",\"title\":\"info\",\"value\":\"CRMEB电商系统Java版正式发布!\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/news_list/index\"},{\"name\":\"show\",\"title\":\"show\",\"value\":\"1\"}],\"id\":97,\"sort\":1,\"status\":true}',1,1,'2020-06-03 09:39:53','2020-08-13 10:33:17'), (90,68,'{\"fields\":[{\"name\":\"info\",\"title\":\"info\",\"value\":\"CRMEB电商系统Java版正式发布!\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/news_list/index\"},{\"name\":\"show\",\"title\":\"show\",\"value\":\"1\"}],\"id\":97,\"sort\":2,\"status\":true}',2,1,'2020-06-03 09:40:11','2020-08-13 10:33:14'), (91,71,'{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"衣服\"}],\"id\":102,\"sort\":1,\"status\":true}',1,1,'2020-06-03 11:34:54','2020-06-03 11:34:54'), (92,71,'{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"鞋子\"}],\"id\":102,\"sort\":2,\"status\":true}',2,1,'2020-06-03 11:35:00','2020-06-03 11:35:00'), (93,71,'{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"叶子\"}],\"id\":102,\"sort\":3,\"status\":true}',3,1,'2020-06-03 11:35:07','2020-06-03 11:35:07'), (94,71,'{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"MacBook Pro\"}],\"id\":102,\"sort\":4,\"status\":true}',4,1,'2020-06-03 11:35:29','2020-06-03 11:35:29'), (95,62,'{\"fields\":[{\"name\":\"price\",\"title\":\"price\",\"value\":\"0.01\"},{\"name\":\"give_money\",\"title\":\"give_money\",\"value\":\"0.1\"}],\"id\":103,\"sort\":1,\"status\":true}',1,1,'2020-06-10 15:13:01','2020-08-10 16:28:21'), (96,62,'{\"fields\":[{\"name\":\"price\",\"title\":\"price\",\"value\":\"30.00\"},{\"name\":\"give_money\",\"title\":\"give_money\",\"value\":\"3.00\"}],\"id\":103,\"sort\":2,\"status\":true}',2,1,'2020-06-10 15:13:15','2020-06-10 15:13:15'), (97,62,'{\"fields\":[{\"name\":\"price\",\"title\":\"price\",\"value\":\"50.00\"},{\"name\":\"give_money\",\"title\":\"give_money\",\"value\":\"5.00\"}],\"id\":103,\"sort\":3,\"status\":true}',3,1,'2020-06-10 15:13:39','2020-06-10 15:13:39'), (98,62,'{\"fields\":[{\"name\":\"price\",\"title\":\"price\",\"value\":\"500.00\"},{\"name\":\"give_money\",\"title\":\"give_money\",\"value\":\"50.00\"}],\"id\":103,\"sort\":4,\"status\":true}',4,1,'2020-06-10 15:13:49','2020-06-10 15:13:49'), (99,62,'{\"fields\":[{\"name\":\"price\",\"title\":\"price\",\"value\":\"800.00\"},{\"name\":\"give_money\",\"title\":\"give_money\",\"value\":\"100.00\"}],\"id\":103,\"sort\":5}',5,1,'2020-06-10 15:13:58','2020-06-10 15:13:58'), (100,60,'{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"海报1\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/product/2020/08/03/755bf516b1ca4b6db3bfeaa4dd5901cdh71kob20re.jpg\"}],\"id\":113,\"sort\":1,\"status\":true}',1,1,'2020-07-29 15:08:28','2020-08-03 16:55:49'), (101,60,'{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"海报2\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/content/2020/08/10/ad3bd819f1e84caeabbb858d0f1cef8eanuapqav4n.jpg\"}],\"id\":113,\"sort\":2,\"status\":true}',2,1,'2020-07-29 15:08:41','2020-08-12 11:54:54'), (102,60,'{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"海报3\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/content/2020/08/10/ad3bd819f1e84caeabbb858d0f1cef8eanuapqav4n.jpg\"}],\"id\":113,\"sort\":3,\"status\":true}',3,1,'2020-07-29 15:09:02','2020-08-12 11:55:02'), (109,72,'{\"fields\":[{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/product/2020/07/30/d7c99e30442d4b05815b167dfe8240197jff3ms7wp.png\"}],\"id\":114,\"sort\":1,\"status\":true}',1,1,'2020-07-29 18:16:33','2020-07-30 10:27:30'), (111,53,'{\"fields\":[{\"name\":\"orderStatus\",\"title\":\"orderStatus\",\"value\":\"0\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"http://datong.crmeb.net/public/uploads/attach/2019/03/28/5c9ccca151e99.gif\"}],\"id\":115,\"sort\":1,\"status\":true}',1,1,'2020-07-29 19:59:14','2020-07-29 19:59:14'), (112,53,'{\"fields\":[{\"name\":\"orderStatus\",\"title\":\"orderStatus\",\"value\":\"1\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"http://datong.crmeb.net/public/uploads/attach/2019/03/28/5c9ccca12638a.gif\"}],\"id\":115,\"sort\":1,\"status\":true}',1,1,'2020-07-29 19:59:29','2020-07-29 19:59:29'), (113,53,'{\"fields\":[{\"name\":\"orderStatus\",\"title\":\"orderStatus\",\"value\":\"2\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"http://datong.crmeb.net/public/uploads/attach/2019/03/28/5c9ccca1c78cd.gif\"}],\"id\":115,\"sort\":1,\"status\":true}',1,1,'2020-07-29 19:59:47','2020-07-29 19:59:47'), (114,53,'{\"fields\":[{\"name\":\"orderStatus\",\"title\":\"orderStatus\",\"value\":\"3\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"http://datong.crmeb.net/public/uploads/attach/2019/03/28/5c9ccca178a67.gif\"}],\"id\":115,\"sort\":1,\"status\":true}',1,1,'2020-07-29 20:00:02','2020-07-29 20:00:02'), (115,53,'{\"fields\":[{\"name\":\"orderStatus\",\"title\":\"orderStatus\",\"value\":\"4\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"http://datong.crmeb.net/public/uploads/attach/2019/03/28/5c9ccca1a01b6.gif\"}],\"id\":115,\"sort\":1,\"status\":true}',1,1,'2020-07-29 20:00:14','2020-07-29 20:00:14'), (116,53,'{\"fields\":[{\"name\":\"orderStatus\",\"title\":\"orderStatus\",\"value\":\"9\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"http://kaifa.crmeb.net/uploads/attach/2019/08/20190809/7ba5e7e9bcd1ed480fdd432b49a3161a.gif\"}],\"id\":115,\"sort\":1,\"status\":true}',1,1,'2020-07-29 20:00:30','2020-07-29 20:00:30'), (117,37,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"精品推荐\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"*\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/f77ff754930b48f6b9acb56ea4740e93qnbzwe6lu7.jpg\"}],\"id\":95,\"sort\":1,\"status\":true}',1,1,'2020-08-13 12:34:52','2020-08-13 12:39:16'), (118,37,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"BANNER\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"*\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/f2fb85fba7bd4078adb252014d3e8896e48sbh2gwr.jpg\"}],\"id\":95,\"sort\":2}',2,1,'2020-08-13 12:41:15','2020-08-13 12:41:15'), (119,48,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"首页banner\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"*\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/38470df90d8c436fade672478461e3732l8z7ernvh.jpg\"}],\"id\":95,\"sort\":2}',2,1,'2020-08-13 12:42:49','2020-08-13 12:42:49'), (120,59,'{\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"1\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"1\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"image/maintain/2020/08/13/f2fb85fba7bd4078adb252014d3e8896e48sbh2gwr.jpg\"}],\"id\":93,\"sort\":1}',1,1,'2020-08-13 13:04:36','2020-08-13 13:04:36'); /*!40000 ALTER TABLE `eb_system_group_data` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_system_log # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_log`; CREATE TABLE `eb_system_log` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '管理员操作记录ID', `admin_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '管理员id', `admin_name` varchar(64) NOT NULL DEFAULT '' COMMENT '管理员姓名', `path` varchar(128) NOT NULL DEFAULT '' COMMENT '链接', `page` varchar(64) NOT NULL DEFAULT '' COMMENT '行为', `method` varchar(12) NOT NULL DEFAULT '' COMMENT '访问类型', `ip` varchar(16) NOT NULL DEFAULT '' COMMENT '登录IP', `type` varchar(32) NOT NULL DEFAULT '' COMMENT '类型', `add_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '操作时间', `merchant_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户id', PRIMARY KEY (`id`) USING BTREE, KEY `admin_id` (`admin_id`) USING BTREE, KEY `add_time` (`add_time`) USING BTREE, KEY `type` (`type`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='管理员操作记录表'; # Dump of table eb_system_menus # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_menus`; CREATE TABLE `eb_system_menus` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT '菜单ID', `pid` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '父级id', `icon` varchar(16) NOT NULL DEFAULT '' COMMENT '图标', `menu_name` varchar(32) NOT NULL DEFAULT '' COMMENT '按钮名', `module` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '模块名', `controller` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT '控制器', `action` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '方法名', `params` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '[]' COMMENT '参数', `sort` tinyint(3) NOT NULL DEFAULT '1' COMMENT '排序', `is_show` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否显示', `access` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '子管理员是否可用', PRIMARY KEY (`id`) USING BTREE, KEY `pid` (`pid`) USING BTREE, KEY `is_show` (`is_show`) USING BTREE, KEY `access` (`access`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='菜单表'; LOCK TABLES `eb_system_menus` WRITE; /*!40000 ALTER TABLE `eb_system_menus` DISABLE KEYS */; INSERT INTO `eb_system_menus` (`id`, `pid`, `icon`, `menu_name`, `module`, `controller`, `action`, `params`, `sort`, `is_show`, `access`) VALUES (1,289,'','系统设置',X'61646D696E',X'73657474696E672E73797374656D436F6E666967',X'696E646578',X'5B5D',127,1,1), (2,153,'','权限规则',X'61646D696E',X'73657474696E672E73797374656D4D656E7573',X'696E646578',X'5B5D',7,1,1), (4,153,'','管理员列表',X'61646D696E',X'73657474696E672E73797374656D41646D696E',X'696E646578',X'5B5D',9,1,1), (7,467,'','配置分类',X'61646D696E',X'73657474696E672E73797374656D436F6E666967546162',X'696E646578',X'5B5D',1,1,1), (8,153,'','身份管理',X'61646D696E',X'73657474696E672E73797374656D526F6C65',X'696E646578',X'5B5D',10,1,1), (9,467,'','组合数据',X'61646D696E',X'73657474696E672E73797374656D47726F7570',X'696E646578',X'5B5D',1,1,1), (11,0,'wechat','公众号',X'61646D696E',X'776563686174',X'696E646578',X'5B5D',91,1,1), (12,354,'','微信关注回复',X'61646D696E',X'7765636861742E7265706C79',X'696E646578',X'7B226B6579223A22737562736372696265222C227469746C65223A225C75376631365C75386639315C75363565305C75393134645C75376636655C75396564385C75386261345C75353664655C7535393064227D',86,1,1), (17,360,'','微信菜单',X'61646D696E',X'7765636861742E6D656E7573',X'696E646578',X'5B5D',95,1,1), (19,11,'','图文管理',X'61646D696E',X'7765636861742E7765636861744E65777343617465676F7279',X'696E646578',X'5B5D',60,1,1), (21,0,'magic','维护',X'61646D696E',X'73797374656D',X'696E646578',X'5B5D',0,1,1), (23,0,'laptop','商品',X'61646D696E',X'73746F7265',X'696E646578',X'5B5D',110,1,1), (24,23,'','商品管理',X'61646D696E',X'73746F72652E73746F726550726F64756374',X'696E646578',X'7B2274797065223A2231227D',100,1,1), (25,23,'','商品分类',X'61646D696E',X'73746F72652E73746F726543617465676F7279',X'696E646578',X'5B5D',1,1,1), (26,285,'','订单管理',X'61646D696E',X'6F726465722E73746F72654F72646572',X'696E646578',X'5B5D',1,1,1), (30,354,'','关键字回复',X'61646D696E',X'7765636861742E7265706C79',X'6B6579776F7264',X'5B5D',85,1,1), (31,354,'','无效关键词回复',X'61646D696E',X'7765636861742E7265706C79',X'696E646578',X'7B226B6579223A2264656661756C74222C227469746C65223A225C75376631365C75386639315C75363565305C75363534385C75353137335C75393532655C75356235375C75396564385C75386261345C75353664655C7535393064227D',84,1,1), (33,284,'','附加权限',X'61646D696E',X'61727469636C652E61727469636C6543617465676F7279',X'',X'5B5D',0,0,1), (34,33,'','添加文章分类',X'61646D696E',X'61727469636C652E61727469636C6543617465676F7279',X'637265617465',X'5B5D',0,0,1), (35,33,'','编辑文章分类',X'61646D696E',X'61727469636C652E61727469636C6543617465676F7279',X'65646974',X'5B5D',0,0,1), (36,33,'','删除文章分类',X'61646D696E',X'61727469636C652E61727469636C6543617465676F7279',X'64656C657465',X'5B5D',0,0,1), (37,31,'','附加权限',X'61646D696E',X'7765636861742E7265706C79',X'',X'5B5D',0,0,1), (38,283,'','附加权限',X'61646D696E',X'61727469636C652E61727469636C65',X'',X'5B5D',0,0,1), (39,38,'','添加文章',X'61646D696E',X'61727469636C652E2061727469636C65',X'637265617465',X'5B5D',0,0,1), (40,38,'','编辑文章',X'61646D696E',X'61727469636C652E2061727469636C65',X'6164645F6E6577',X'5B5D',0,0,1), (41,38,'','删除文章',X'61646D696E',X'61727469636C652E2061727469636C65',X'64656C657465',X'5B5D',0,0,1), (42,19,'','附加权限',X'61646D696E',X'7765636861742E7765636861744E65777343617465676F7279',X'',X'5B5D',0,0,1), (43,42,'','添加图文消息',X'61646D696E',X'7765636861742E7765636861744E65777343617465676F7279',X'637265617465',X'5B5D',0,0,1), (44,42,'','编辑图文消息',X'61646D696E',X'7765636861742E7765636861744E65777343617465676F7279',X'65646974',X'5B5D',0,0,1), (45,42,'','删除图文消息',X'61646D696E',X'7765636861742E7765636861744E65777343617465676F7279',X'64656C657465',X'5B5D',0,0,1), (46,7,'','配置分类附加权限',X'61646D696E',X'73657474696E672E73797374656D436F6E666967546162',X'',X'5B5D',0,0,1), (47,46,'','添加配置分类',X'61646D696E',X'73657474696E672E73797374656D436F6E666967546162',X'637265617465',X'5B5D',0,0,1), (48,117,'','添加配置',X'61646D696E',X'73657474696E672E73797374656D436F6E666967',X'637265617465',X'5B5D',0,0,1), (49,46,'','编辑配置分类',X'61646D696E',X'73657474696E672E73797374656D436F6E666967546162',X'65646974',X'5B5D',0,0,1), (50,46,'','删除配置分类',X'61646D696E',X'73657474696E672E73797374656D436F6E666967546162',X'64656C657465',X'5B5D',0,0,1), (51,46,'','查看子字段',X'61646D696E',X'73797374656D2E73797374656D436F6E666967546162',X'736F6E436F6E666967546162',X'5B5D',0,0,1), (52,9,'','组合数据附加权限',X'61646D696E',X'73657474696E672E73797374656D47726F7570',X'',X'5B5D',0,0,1), (53,468,'','添加数据',X'61646D696E',X'73657474696E672E73797374656D5F64726F75705F64617461',X'637265617465',X'5B5D',0,0,1), (54,468,'','编辑数据',X'61646D696E',X'73657474696E672E73797374656D5F64726F75705F64617461',X'65646974',X'5B5D',0,0,1), (55,468,'','删除数据',X'61646D696E',X'73657474696E672E73797374656D5F64726F75705F64617461',X'64656C657465',X'5B5D',0,0,1), (56,468,'','数据列表',X'61646D696E',X'73657474696E672E73797374656D5F64726F75705F64617461',X'696E646578',X'5B5D',0,0,1), (57,52,'','添加数据组',X'61646D696E',X'73657474696E672E73797374656D47726F7570',X'637265617465',X'5B5D',0,0,1), (58,52,'','删除数据组',X'61646D696E',X'73657474696E672E73797374656D47726F7570',X'64656C657465',X'5B5D',0,0,1), (59,4,'','管理员列表附加权限',X'61646D696E',X'73657474696E672E73797374656D41646D696E',X'',X'5B5D',0,0,1), (60,59,'','添加管理员',X'61646D696E',X'73657474696E672E73797374656D41646D696E',X'637265617465',X'5B5D',0,0,1), (61,59,'','编辑管理员',X'61646D696E',X'73657474696E672E73797374656D41646D696E',X'65646974',X'5B5D',0,0,1), (62,59,'','删除管理员',X'61646D696E',X'73657474696E672E73797374656D41646D696E',X'64656C657465',X'5B5D',0,0,1), (63,8,'','身份管理附加权限',X'61646D696E',X'73657474696E672E73797374656D526F6C65',X'',X'5B5D',0,0,1), (64,63,'','添加身份',X'61646D696E',X'73657474696E672E73797374656D526F6C65',X'637265617465',X'5B5D',0,0,1), (65,63,'','修改身份',X'61646D696E',X'73657474696E672E73797374656D526F6C65',X'65646974',X'5B5D',0,0,1), (66,63,'','删除身份',X'61646D696E',X'73657474696E672E73797374656D526F6C65',X'64656C657465',X'5B5D',0,0,1), (67,8,'','身份管理展示页',X'61646D696E',X'73657474696E672E73797374656D526F6C65',X'696E646578',X'5B5D',0,0,1), (68,4,'','管理员列表展示页',X'61646D696E',X'73657474696E672E73797374656D41646D696E',X'696E646578',X'5B5D',0,0,1), (69,7,'','配置分类展示页',X'61646D696E',X'73657474696E672E73797374656D436F6E666967546162',X'696E646578',X'5B5D',0,0,1), (70,9,'','组合数据展示页',X'61646D696E',X'73657474696E672E73797374656D47726F7570',X'696E646578',X'5B5D',0,0,1), (71,284,'','文章分类管理展示页',X'61646D696E',X'61727469636C652E61727469636C6543617465676F7279',X'696E646578',X'5B5D',0,0,1), (72,283,'','文章管理展示页',X'61646D696E',X'61727469636C652E61727469636C65',X'696E646578',X'5B5D',0,0,1), (73,19,'','图文消息展示页',X'61646D696E',X'7765636861742E7765636861744E65777343617465676F7279',X'696E646578',X'5B5D',0,0,1), (74,2,'','菜单管理附加权限',X'61646D696E',X'73657474696E672E73797374656D4D656E7573',X'',X'5B5D',0,0,1), (75,74,'','添加菜单',X'61646D696E',X'73657474696E672E73797374656D4D656E7573',X'637265617465',X'5B5D',0,0,1), (76,74,'','编辑菜单',X'61646D696E',X'73657474696E672E73797374656D4D656E7573',X'65646974',X'5B5D',0,0,1), (77,74,'','删除菜单',X'61646D696E',X'73657474696E672E73797374656D4D656E7573',X'64656C657465',X'5B5D',0,0,1), (78,2,'','菜单管理展示页',X'61646D696E',X'73657474696E672E73797374656D4D656E7573',X'696E646578',X'5B5D',0,0,1), (80,0,'leanpub','内容',X'61646D696E',X'61727469636C65',X'696E646578',X'5B5D',90,1,1), (82,11,'','微信用户管理',X'61646D696E',X'75736572',X'6C697374',X'5B5D',5,1,1), (84,82,'','用户标签',X'61646D696E',X'7765636861742E77656368617455736572',X'746167',X'5B5D',0,1,1), (89,30,'','关键字回复附加权限',X'61646D696E',X'7765636861742E7265706C79',X'',X'5B5D',0,0,1), (90,89,'','添加关键字',X'61646D696E',X'7765636861742E7265706C79',X'6164645F6B6579776F7264',X'5B5D',0,0,1), (91,89,'','修改关键字',X'61646D696E',X'7765636861742E7265706C79',X'696E666F5F6B6579776F7264',X'5B5D',0,0,1), (92,89,'','删除关键字',X'61646D696E',X'7765636861742E7265706C79',X'64656C657465',X'5B5D',0,0,1), (93,30,'','关键字回复展示页',X'61646D696E',X'7765636861742E7265706C79',X'6B6579776F7264',X'5B5D',0,0,1), (94,31,'','无效关键词回复展示页',X'61646D696E',X'7765636861742E7265706C79',X'696E646578',X'5B5D',0,0,1), (95,31,'','无效关键词回复附加权限',X'61646D696E',X'7765636861742E7265706C79',X'',X'5B5D',0,0,1), (96,95,'','无效关键词回复提交按钮',X'61646D696E',X'7765636861742E7265706C79',X'73617665',X'7B226B6579223A2264656661756C74222C227469746C65223A22E7BC96E8BE91E697A0E69588E585B3E994AEE5AD97E9BB98E8AEA4E59B9EE5A48D227D',0,0,1), (97,12,'','微信关注回复展示页',X'61646D696E',X'7765636861742E7265706C79',X'696E646578',X'5B5D',0,0,1), (98,12,'','微信关注回复附加权限',X'61646D696E',X'7765636861742E7265706C79',X'',X'5B5D',0,0,1), (99,98,'','微信关注回复提交按钮',X'61646D696E',X'7765636861742E7265706C79',X'73617665',X'7B226B6579223A22737562736372696265222C227469746C65223A22E7BC96E8BE91E697A0E9858DE7BDAEE9BB98E8AEA4E59B9EE5A48D227D',0,0,1), (100,74,'','添加提交菜单',X'61646D696E',X'73657474696E672E73797374656D4D656E7573',X'73617665',X'5B5D',0,0,1), (101,74,'','编辑提交菜单',X'61646D696E',X'73657474696E672E73797374656D4D656E7573',X'757064617465',X'5B5D',0,0,1), (102,59,'','提交添加管理员',X'61646D696E',X'73657474696E672E73797374656D41646D696E',X'73617665',X'5B5D',0,0,1), (103,59,'','提交修改管理员',X'61646D696E',X'73657474696E672E73797374656D41646D696E',X'757064617465',X'5B5D',0,0,1), (104,63,'','提交添加身份',X'61646D696E',X'73657474696E672E73797374656D526F6C65',X'73617665',X'5B5D',0,0,1), (105,63,'','提交修改身份',X'61646D696E',X'73657474696E672E73797374656D526F6C65',X'757064617465',X'5B5D',0,0,1), (106,46,'','提交添加配置分类',X'61646D696E',X'73657474696E672E73797374656D436F6E666967546162',X'73617665',X'5B5D',0,0,1), (107,46,'','提交修改配置分类',X'61646D696E',X'73657474696E672E73797374656D436F6E666967546162',X'757064617465',X'5B5D',0,0,1), (108,117,'','提交添加配置列表',X'61646D696E',X'73657474696E672E73797374656D436F6E666967',X'73617665',X'5B5D',0,0,1), (109,52,'','提交添加数据组',X'61646D696E',X'73657474696E672E73797374656D47726F7570',X'73617665',X'5B5D',0,0,1), (110,52,'','提交修改数据组',X'61646D696E',X'73657474696E672E73797374656D47726F7570',X'757064617465',X'5B5D',0,0,1), (111,468,'','提交添加数据',X'61646D696E',X'73657474696E672E73797374656D5F64726F75705F64617461',X'73617665',X'5B5D',0,0,1), (112,468,'','提交修改数据',X'61646D696E',X'73657474696E672E73797374656D5F64726F75705F64617461',X'757064617465',X'5B5D',0,0,1), (113,33,'','提交添加文章分类',X'61646D696E',X'61727469636C652E61727469636C6543617465676F7279',X'73617665',X'5B5D',0,0,1), (114,33,'','提交添加文章分类',X'61646D696E',X'61727469636C652E61727469636C6543617465676F7279',X'757064617465',X'5B5D',0,0,1), (115,42,'','提交添加图文消息',X'61646D696E',X'7765636861742E7765636861744E65777343617465676F7279',X'73617665',X'5B5D',0,0,1), (116,42,'','提交编辑图文消息',X'61646D696E',X'7765636861742E7765636861744E65777343617465676F7279',X'757064617465',X'5B5D',0,0,1), (117,1,'','配置列表附加权限',X'61646D696E',X'73657474696E672E73797374656D436F6E666967',X'',X'5B5D',0,0,1), (118,1,'','配置列表展示页',X'61646D696E',X'73657474696E672E73797374656D436F6E666967',X'696E646578',X'5B5D',0,0,1), (119,117,'','提交保存配置列表',X'61646D696E',X'73657474696E672E73797374656D436F6E666967',X'736176655F626173696373',X'5B5D',0,0,1), (123,89,'','提交添加关键字',X'61646D696E',X'7765636861742E7265706C79',X'736176655F6B6579776F7264',X'7B22646973223A2231227D',0,0,1), (124,89,'','提交修改关键字',X'61646D696E',X'7765636861742E7265706C79',X'736176655F6B6579776F7264',X'7B22646973223A2232227D',0,0,1), (126,17,'','微信菜单展示页',X'61646D696E',X'7765636861742E6D656E7573',X'696E646578',X'5B5D',0,0,1), (127,17,'','微信菜单附加权限',X'61646D696E',X'7765636861742E6D656E7573',X'',X'5B5D',0,0,1), (128,127,'','提交微信菜单按钮',X'61646D696E',X'7765636861742E6D656E7573',X'73617665',X'7B22646973223A2231227D',0,0,1), (129,82,'','用户行为纪录',X'61646D696E',X'7765636861742E7765636861744D657373616765',X'696E646578',X'5B5D',0,1,1), (130,469,'','系统日志',X'61646D696E',X'73797374656D2E73797374656D4C6F67',X'696E646578',X'5B5D',5,1,1), (131,130,'','管理员操作记录展示页',X'61646D696E',X'73797374656D2E73797374656D4C6F67',X'696E646578',X'5B5D',0,0,1), (132,129,'','微信用户行为纪录展示页',X'61646D696E',X'7765636861742E7765636861744D657373616765',X'696E646578',X'5B5D',0,0,1), (133,82,'','微信用户',X'61646D696E',X'7765636861742E77656368617455736572',X'696E646578',X'5B5D',1,1,1), (134,133,'','微信用户展示页',X'61646D696E',X'7765636861742E77656368617455736572',X'696E646578',X'5B5D',0,0,1), (137,135,'','添加通知模板',X'61646D696E',X'73797374656D2E73797374656D4E6F74696365',X'637265617465',X'5B5D',0,0,1), (138,135,'','编辑通知模板',X'61646D696E',X'73797374656D2E73797374656D4E6F74696365',X'65646974',X'5B5D',0,0,1), (139,135,'','删除辑通知模板',X'61646D696E',X'73797374656D2E73797374656D4E6F74696365',X'64656C657465',X'5B5D',0,0,1), (140,135,'','提交编辑辑通知模板',X'61646D696E',X'73797374656D2E73797374656D4E6F74696365',X'757064617465',X'5B5D',0,0,1), (141,135,'','提交添加辑通知模板',X'61646D696E',X'73797374656D2E73797374656D4E6F74696365',X'73617665',X'5B5D',0,0,1), (142,25,'','商品分类展示页',X'61646D696E',X'73746F72652E73746F726543617465676F7279',X'696E646578',X'5B5D',0,0,1), (143,25,'','商品分类附加权限',X'61646D696E',X'73746F72652E73746F726543617465676F7279',X'',X'5B5D',0,0,1), (144,117,'','获取配置列表上传文件的名称',X'61646D696E',X'73657474696E672E73797374656D436F6E666967',X'676574696D6167656E616D65',X'5B5D',0,0,1), (145,117,'','配置列表上传文件',X'61646D696E',X'73657474696E672E73797374656D436F6E666967',X'766965775F75706C6F6164',X'5B5D',0,0,1), (146,24,'','商品管理展示页',X'61646D696E',X'73746F72652E73746F726550726F64756374',X'696E646578',X'5B5D',0,0,1), (147,24,'','商品管理附加权限',X'61646D696E',X'73746F72652E73746F726550726F64756374',X'',X'5B5D',0,0,1), (148,286,'','优惠券',X'',X'',X'',X'5B5D',10,1,1), (149,148,'','优惠券模板',X'61646D696E',X'756D702E73746F7265436F75706F6E',X'696E646578',X'5B5D',5,1,1), (150,148,'','会员领取记录',X'61646D696E',X'756D702E73746F7265436F75706F6E55736572',X'696E646578',X'5B5D',1,1,1), (151,0,'user','会员',X'61646D696E',X'75736572',X'696E646578',X'5B5D',107,1,1), (153,289,'','管理权限',X'61646D696E',X'73657474696E672E73797374656D41646D696E',X'',X'5B5D',50,1,1), (155,154,'','商户商品展示页',X'61646D696E',X'73746F72652E73746F72654D65726368616E74',X'696E646578',X'5B5D',0,0,1), (156,154,'','商户商品附加权限',X'61646D696E',X'73746F72652E73746F72654D65726368616E74',X'',X'5B5D',0,0,1), (158,157,'','商户文章管理展示页',X'61646D696E',X'7765636861742E7765636861744E657773',X'6D65726368616E74496E646578',X'5B5D',0,0,1), (159,157,'','商户文章管理附加权限',X'61646D696E',X'7765636861742E7765636861744E657773',X'',X'5B5D',0,0,1), (173,469,'','文件校验',X'61646D696E',X'73797374656D2E73797374656D46696C65',X'696E646578',X'5B5D',1,1,1), (174,360,'','微信模板消息',X'61646D696E',X'7765636861742E77656368617454656D706C617465',X'696E646578',X'5B5D',1,1,1), (175,289,'','客服管理',X'61646D696E',X'7765636861742E73746F726553657276696365',X'696E646578',X'5B5D',70,1,1), (177,151,'','会员管理',X'61646D696E',X'757365722E75736572',X'696E646578',X'5B5D',10,1,1), (179,307,'','充值记录',X'61646D696E',X'66696E616E63652E757365725265636861726765',X'696E646578',X'5B5D',1,1,1), (190,26,'','订单管理展示页',X'61646D696E',X'6F726465722E73746F72654F72646572',X'696E646578',X'5B5D',0,0,1), (191,26,'','订单管理附加权限',X'61646D696E',X'6F726465722E73746F72654F72646572',X'',X'5B5D',0,0,1), (192,191,'','订单管理去发货',X'61646D696E',X'6F726465722E73746F72654F72646572',X'64656C697665725F676F6F6473',X'5B5D',0,0,1), (193,191,'','订单管理备注',X'61646D696E',X'6F726465722E73746F72654F72646572',X'72656D61726B',X'5B5D',0,0,1), (194,191,'','订单管理去送货',X'61646D696E',X'6F726465722E73746F72654F72646572',X'64656C6976657279',X'5B5D',0,0,1), (195,191,'','订单管理已收货',X'61646D696E',X'6F726465722E73746F72654F72646572',X'74616B655F64656C6976657279',X'5B5D',0,0,1), (196,191,'','订单管理退款',X'61646D696E',X'6F726465722E73746F72654F72646572',X'726566756E645F79',X'5B5D',0,0,1), (197,191,'','订单管理修改订单',X'61646D696E',X'6F726465722E73746F72654F72646572',X'65646974',X'5B5D',0,0,1), (198,191,'','订单管理修改订单提交',X'61646D696E',X'6F726465722E73746F72654F72646572',X'757064617465',X'5B5D',0,0,1), (199,191,'','订单管理退积分',X'61646D696E',X'6F726465722E73746F72654F72646572',X'696E74656772616C5F6261636B',X'5B5D',0,0,1), (200,191,'','订单管理退积分提交',X'61646D696E',X'6F726465722E73746F72654F72646572',X'757064617465496E74656772616C4261636B',X'5B5D',0,0,1), (201,191,'','订单管理立即支付',X'61646D696E',X'6F726465722E73746F72654F72646572',X'6F66666C696E65',X'5B5D',0,0,1), (202,191,'','订单管理退款原因',X'61646D696E',X'6F726465722E73746F72654F72646572',X'726566756E645F6E',X'5B5D',0,0,1), (203,191,'','订单管理退款原因提交',X'61646D696E',X'6F726465722E73746F72654F72646572',X'757064617465526566756E644E',X'5B5D',0,0,1), (204,191,'','订单管理修改配送信息',X'61646D696E',X'6F726465722E73746F72654F72646572',X'646973747269627574696F6E',X'5B5D',0,0,1), (205,191,'','订单管理修改配送信息提交',X'61646D696E',X'6F726465722E73746F72654F72646572',X'757064617465446973747269627574696F6E',X'5B5D',0,0,1), (206,191,'','订单管理退款提交',X'61646D696E',X'6F726465722E73746F72654F72646572',X'757064617465526566756E6459',X'5B5D',0,0,1), (207,191,'','订单管理去发货提交',X'61646D696E',X'6F726465722E73746F72654F72646572',X'75706461746544656C6976657279476F6F6473',X'5B5D',0,0,1), (208,191,'','订单管理去送货提交',X'61646D696E',X'6F726465722E73746F72654F72646572',X'75706461746544656C6976657279',X'5B5D',0,0,1), (209,175,'','客服管理展示页',X'61646D696E',X'73746F72652E73746F726553657276696365',X'696E646578',X'5B5D',0,0,1), (210,175,'','客服管理附加权限',X'61646D696E',X'73746F72652E73746F726553657276696365',X'',X'5B5D',0,0,1), (211,210,'','客服管理添加',X'61646D696E',X'73746F72652E73746F726553657276696365',X'637265617465',X'5B5D',0,0,1), (212,210,'','客服管理添加提交',X'61646D696E',X'73746F72652E73746F726553657276696365',X'73617665',X'5B5D',0,0,1), (213,210,'','客服管理编辑',X'61646D696E',X'73746F72652E73746F726553657276696365',X'65646974',X'5B5D',0,0,1), (214,210,'','客服管理编辑提交',X'61646D696E',X'73746F72652E73746F726553657276696365',X'757064617465',X'5B5D',0,0,1), (215,210,'','客服管理删除',X'61646D696E',X'73746F72652E73746F726553657276696365',X'64656C657465',X'5B5D',0,0,1), (216,179,'','用户充值记录展示页',X'61646D696E',X'757365722E757365725265636861726765',X'696E646578',X'5B5D',0,0,1), (217,179,'','用户充值记录附加权限',X'61646D696E',X'757365722E757365725265636861726765',X'',X'5B5D',0,0,1), (218,217,'','用户充值记录退款',X'61646D696E',X'757365722E757365725265636861726765',X'65646974',X'5B5D',0,0,1), (219,217,'','用户充值记录退款提交',X'61646D696E',X'757365722E757365725265636861726765',X'757064617465726566756E6479',X'5B5D',0,0,1), (220,180,'','预售卡管理批量修改预售卡金额',X'61646D696E',X'70726573656C6C2E70726573656C6C43617264',X'62617463685F7072696365',X'5B5D',0,0,1), (221,180,'','预售卡管理批量修改预售卡金额提交',X'61646D696E',X'70726573656C6C2E70726573656C6C43617264',X'736176656261746368',X'5B5D',0,0,1), (222,210,'','客服管理聊天记录查询',X'61646D696E',X'73746F72652E73746F726553657276696365',X'636861745F75736572',X'5B5D',0,0,1), (223,210,'','客服管理聊天记录查询详情',X'61646D696E',X'73746F72652E73746F726553657276696365',X'636861745F6C697374',X'5B5D',0,0,1), (229,149,'','优惠券管理展示页',X'61646D696E',X'73746F72652E73746F7265436F75706F6E',X'696E646578',X'5B5D',0,0,1), (230,149,'','优惠券管理附加权限',X'61646D696E',X'73746F72652E73746F7265436F75706F6E',X'',X'5B5D',0,0,1), (231,230,'','优惠券管理添加',X'61646D696E',X'73746F72652E73746F7265436F75706F6E',X'637265617465',X'5B5D',0,0,1), (232,230,'','优惠券管理添加提交',X'61646D696E',X'73746F72652E73746F7265436F75706F6E',X'73617665',X'5B5D',0,0,1), (233,230,'','优惠券管理删除',X'61646D696E',X'73746F72652E73746F7265436F75706F6E',X'64656C657465',X'5B5D',0,0,1), (234,230,'','优惠券管理立即失效',X'61646D696E',X'73746F72652E73746F7265436F75706F6E',X'737461747573',X'5B5D',0,0,1), (235,148,'','优惠券列表',X'61646D696E',X'756D702E73746F7265436F75706F6E4973737565',X'696E646578',X'5B5D',3,1,1), (236,82,'','用户分组',X'61646D696E',X'7765636861742E77656368617455736572',X'67726F7570',X'5B5D',0,1,1), (237,21,'','刷新缓存',X'61646D696E',X'73797374656D2E636C656172',X'696E646578',X'5B5D',0,1,1), (238,272,'','拼团商品',X'61646D696E',X'756D702E73746F7265436F6D62696E6174696F6E',X'696E646578',X'5B5D',0,1,1), (239,306,'','提现申请',X'61646D696E',X'66696E616E63652E757365725F65787472616374',X'696E646578',X'5B5D',0,1,1), (241,273,'','秒杀商品',X'61646D696E',X'756D702E73746F72655365636B696C6C',X'696E646578',X'5B5D',0,1,1), (244,294,'','财务报表',X'61646D696E',X'7265636F72642E73746F726553746174697374696373',X'696E646578',X'5B5D',0,1,1), (246,295,'','用户统计',X'61646D696E',X'757365722E75736572',X'757365725F616E616C79736973',X'5B5D',0,1,1), (247,153,'','个人资料',X'61646D696E',X'73657474696E672E73797374656D41646D696E',X'61646D696E696E666F',X'5B5D',0,0,1), (248,247,'','个人资料附加权限',X'61646D696E',X'73657474696E672E73797374656D41646D696E',X'',X'5B5D',0,0,1), (249,248,'','个人资料提交保存',X'61646D696E',X'73797374656D2E73797374656D41646D696E',X'73657441646D696E496E666F',X'5B5D',0,0,1), (250,247,'','个人资料展示页',X'61646D696E',X'73657474696E672E73797374656D41646D696E',X'61646D696E696E666F',X'5B5D',0,0,1), (252,21,'','在线更新',X'61646D696E',X'73797374656D2E73797374656D55706772616465636C69656E74',X'696E646578',X'5B5D',0,1,1), (254,271,'','砍价商品',X'61646D696E',X'756D702E73746F72654261726761696E',X'696E646578',X'5B5D',0,1,1), (255,289,'','后台通知',X'61646D696E',X'73657474696E672E73797374656D4E6F74696365',X'696E646578',X'5B5D',0,0,1), (261,147,'','编辑商品',X'61646D696E',X'73746F72652E73746F726570726F64756374',X'65646974',X'5B5D',0,0,1), (262,147,'','添加商品',X'61646D696E',X'73746F72652E73746F726570726F64756374',X'637265617465',X'5B5D',0,0,1), (263,147,'','编辑商品详情',X'61646D696E',X'73746F72652E73746F726570726F64756374',X'656469745F636F6E74656E74',X'5B5D',0,0,1), (264,147,'','开启秒杀',X'61646D696E',X'73746F72652E73746F726570726F64756374',X'7365636B696C6C',X'5B5D',0,0,1), (265,147,'','开启秒杀',X'61646D696E',X'73746F72652E73746F72655F70726F64756374',X'6261726761696E',X'5B5D',0,0,1), (266,147,'','商品编辑属性',X'61646D696E',X'73746F72652E73746F726570726F64756374',X'61747472',X'5B5D',0,0,1), (269,0,'cubes','小程序',X'61646D696E',X'726F7574696E65',X'696E646578',X'5B5D',92,1,1), (271,286,'','砍价管理',X'61646D696E',X'',X'',X'5B5D',0,1,1), (272,286,'','拼团管理',X'61646D696E',X'',X'',X'5B5D',0,1,1), (273,286,'','秒杀管理',X'61646D696E',X'',X'',X'5B5D',0,1,1), (276,469,'','附件管理',X'61646D696E',X'7769646765742E696D61676573',X'696E646578',X'5B5D',0,0,1), (278,469,'','清除数据',X'61646D696E',X'73797374656D2E73797374656D436C65617264617461',X'696E646578',X'5B5D',0,1,1), (283,80,'','文章管理',X'61646D696E',X'61727469636C652E61727469636C65',X'696E646578',X'5B5D',0,1,1), (284,80,'','文章分类',X'61646D696E',X'61727469636C652E61727469636C655F63617465676F7279',X'696E646578',X'5B5D',0,1,1), (285,0,'building-o','订单',X'61646D696E',X'6F72646572',X'696E646578',X'5B5D',109,1,1), (286,0,'paper-plane','营销',X'61646D696E',X'756D70',X'696E646578',X'5B5D',105,1,1), (287,0,'money','财务',X'61646D696E',X'66696E616E6365',X'696E646578',X'5B5D',103,1,1), (288,0,'line-chart','数据',X'61646D696E',X'7265636F7264',X'696E646578',X'5B5D',100,1,1), (289,0,'gear','设置',X'61646D696E',X'73657474696E67',X'696E646578',X'5B5D',90,1,1), (293,288,'','交易数据',X'61646D696E',X'',X'',X'5B5D',100,1,1), (294,288,'','财务数据',X'61646D696E',X'',X'',X'5B5D',80,1,1), (295,288,'','会员数据',X'61646D696E',X'',X'',X'5B5D',70,1,1), (296,288,'','营销数据',X'61646D696E',X'',X'',X'5B5D',90,1,1), (297,288,'','排行榜',X'61646D696E',X'',X'',X'5B5D',0,1,1), (300,294,'','提现统计',X'61646D696E',X'7265636F72642E7265636F7264',X'63686172745F63617368',X'5B5D',0,1,1), (301,294,'','充值统计',X'61646D696E',X'7265636F72642E7265636F7264',X'63686172745F7265636861726765',X'5B5D',0,1,1), (302,294,'','返佣统计',X'61646D696E',X'7265636F72642E7265636F7264',X'63686172745F726562617465',X'5B5D',0,1,1), (303,295,'','会员增长',X'61646D696E',X'7265636F72642E7265636F7264',X'757365725F6368617274',X'5B5D',0,1,1), (304,295,'','会员业务',X'61646D696E',X'7265636F72642E7265636F7264',X'757365725F627573696E6573735F6368617274',X'5B5D',0,1,1), (305,295,'','会员属性',X'61646D696E',X'7265636F72642E7265636F7264',X'757365725F61747472',X'5B5D',0,1,1), (306,287,'','财务操作',X'61646D696E',X'',X'',X'5B5D',100,1,1), (307,287,'','财务记录',X'61646D696E',X'',X'',X'5B5D',50,1,1), (308,287,'','佣金记录',X'61646D696E',X'',X'',X'5B5D',0,1,1), (312,307,'','资金监控',X'61646D696E',X'66696E616E63652E66696E616E6365',X'62696C6C',X'5B5D',0,1,1), (313,308,'','佣金记录',X'61646D696E',X'66696E616E63652E66696E616E6365',X'636F6D6D697373696F6E5F6C697374',X'5B5D',0,1,1), (314,296,'','积分统计',X'61646D696E',X'7265636F72642E7265636F7264',X'63686172745F73636F7265',X'5B5D',0,1,1), (315,296,'','优惠券统计',X'61646D696E',X'7265636F72642E7265636F7264',X'63686172745F636F75706F6E',X'5B5D',0,1,1), (316,296,'','拼团统计',X'61646D696E',X'7265636F72642E7265636F7264',X'63686172745F636F6D62696E6174696F6E',X'5B5D',0,1,1), (317,296,'','秒杀统计',X'61646D696E',X'7265636F72642E7265636F7264',X'63686172745F7365636B696C6C',X'5B5D',0,1,1), (318,296,'','砍价统计',X'61646D696E',X'7265636F72642E7265636F7264',X'63686172745F6261726761696E',X'5B5D',0,1,1), (319,297,'','商品销售排行',X'61646D696E',X'7265636F72642E7265636F7264',X'72616E6B696E675F73616C65736C69737473',X'5B5D',0,1,1), (320,297,'','返佣排行',X'61646D696E',X'7265636F72642E7265636F7264',X'72616E6B696E675F636F6D6D697373696F6E',X'5B5D',0,1,1), (321,297,'','积分排行',X'61646D696E',X'7265636F72642E7265636F7264',X'72616E6B696E675F706F696E74',X'5B5D',0,1,1), (329,285,'','营销订单',X'61646D696E',X'75736572',X'75736572',X'5B5D',0,0,1), (333,272,'','拼团列表',X'61646D696E',X'756D702E73746F7265436F6D62696E6174696F6E',X'636F6D62696E615F6C697374',X'5B5D',0,1,1), (334,329,'','秒杀订单',X'61646D696E',X'75736572',X'',X'5B5D',0,0,1), (335,329,'','积分兑换',X'61646D696E',X'75736572',X'',X'5B5D',0,0,1), (337,0,'users','分销',X'61646D696E',X'6167656E74',X'696E646578',X'5B5D',106,1,1), (340,293,'','订单统计',X'61646D696E',X'7265636F72642E7265636F7264',X'63686172745F6F72646572',X'5B5D',0,1,1), (341,293,'','商品统计',X'61646D696E',X'7265636F72642E7265636F7264',X'63686172745F70726F64756374',X'5B5D',0,1,1), (349,286,'','积分',X'61646D696E',X'75736572506F696E74',X'696E646578',X'5B5D',0,1,1), (350,349,'','积分配置',X'61646D696E',X'73657474696E672E73797374656D436F6E666967',X'696E646578',X'7B2274797065223A2233222C227461625F6964223A223131227D',0,1,1), (351,349,'','积分日志',X'61646D696E',X'756D702E75736572506F696E74',X'696E646578',X'5B5D',0,1,1), (353,337,'','分销配置',X'61646D696E',X'73657474696E672E73797374656D436F6E666967',X'696E646578',X'7B2274797065223A2233222C227461625F6964223A2239227D',0,1,1), (354,11,'','自动回复',X'',X'',X'',X'5B5D',80,1,1), (360,11,'','公众号配置',X'',X'',X'',X'5B5D',100,1,1), (362,276,'','附加权限',X'61646D696E',X'7769646765742E696D61676573',X'',X'5B5D',0,1,1), (363,362,'','上传图片',X'61646D696E',X'7769646765742E696D61676573',X'75706C6F6164',X'5B5D',0,0,1), (364,362,'','删除图片',X'61646D696E',X'7769646765742E696D61676573',X'64656C657465',X'5B5D',0,0,1), (365,362,'','附件管理',X'61646D696E',X'7769646765742E696D61676573',X'696E646578',X'5B5D',0,0,1), (366,254,'','其它权限管理',X'',X'',X'',X'5B5D',0,0,1), (367,366,'','编辑砍价',X'61646D696E',X'756D702E73746F72654261726761696E',X'65646974',X'5B5D',0,0,1), (368,366,'','砍价商品更新',X'61646D696E',X'756D702E73746F72654261726761696E',X'757064617465',X'5B5D',0,1,1), (369,143,'','添加商品分类',X'61646D696E',X'73746F72652E73746F726543617465676F7279',X'637265617465',X'5B5D',0,0,1), (370,143,'','编辑商品分类',X'61646D696E',X'73746F72652E73746F726543617465676F7279',X'65646974',X'5B5D',0,0,1), (371,337,'','分销员管理',X'61646D696E',X'6167656E742E6167656E744D616E616765',X'696E646578',X'5B5D',0,1,1), (372,462,'','首页幻灯片',X'61646D696E',X'73657474696E672E73797374656D5F67726F75705F64617461',X'696E646578',X'7B22676964223A223438227D',0,1,1), (373,462,'','首页导航按钮',X'61646D696E',X'73657474696E672E73797374656D5F67726F75705F64617461',X'696E646578',X'7B22676964223A223437227D',0,1,1), (374,295,'','分销会员业务',X'61646D696E',X'7265636F72642E7265636F7264',X'757365725F646973747269627574696F6E5F6368617274',X'5B5D',0,1,1), (376,269,'','小程序订阅消息',X'61646D696E',X'726F7574696E652E726F7574696E6554656D706C617465',X'696E646578',X'5B5D',0,1,1), (377,469,'','数据备份',X'61646D696E',X'73797374656D2E73797374656D446174616261636B7570',X'696E646578',X'5B5D',0,1,1), (378,489,'','物流公司',X'61646D696E',X'73797374656D2E65787072657373',X'696E646578',X'5B5D',0,1,1), (379,469,'','文件管理',X'61646D696E',X'73797374656D2E73797374656D46696C65',X'6F70656E646972',X'5B5D',0,1,1), (380,379,'','权限规则',X'61646D696E',X'73797374656D2E73797374656D46696C65',X'',X'5B5D',0,0,1), (381,380,'','打开文件',X'61646D696E',X'73797374656D2E73797374656D46696C65',X'6F70656E66696C65',X'5B5D',0,0,1), (382,380,'','编辑文件',X'61646D696E',X'73797374656D2E73797374656D46696C65',X'7361766566696C65',X'5B5D',0,0,1), (386,362,'','移动图片分类展示',X'61646D696E',X'7769646765742E696D61676573',X'6D6F7665696D67',X'5B5D',0,0,1), (387,362,'','编辑分类',X'61646D696E',X'7769646765742E696D61676573',X'75706461746563617465',X'5B5D',0,0,1), (388,362,'','添加分类',X'61646D696E',X'7769646765742E696D61676573',X'7361766563617465',X'5B5D',0,0,1), (389,362,'','移动图片分类',X'61646D696E',X'7769646765742E696D61676573',X'6D6F7665696D67636563617465',X'5B5D',0,0,1), (390,362,'','编辑分类展示',X'61646D696E',X'7769646765742E696D61676573',X'6564697463617465',X'5B5D',0,0,1), (392,362,'','删除分类',X'61646D696E',X'7769646765742E696D61676573',X'64656C65746563617465',X'5B5D',0,0,1), (393,362,'','添加分类展示',X'61646D696E',X'7769646765742E696D61676573',X'61646463617465',X'5B5D',0,0,1), (394,191,'','订单获取列表',X'61646D696E',X'6F726465722E73746F72654F72646572',X'6F726465725F6C697374',X'5B5D',0,0,1), (395,82,'','微信用户附加权限',X'61646D696E',X'7765636861742E77656368617455736572',X'',X'5B5D',0,0,1), (396,395,'','推送消息',X'61646D696E',X'7765636861742E7765636861745F6E6577735F63617465676F7279',X'70757368',X'5B5D',0,0,1), (397,395,'','推送优惠券',X'61646D696E',X'756D702E73746F7265436F75706F6E55736572',X'6772616E74',X'5B5D',0,0,1), (398,177,'','会员列表页',X'61646D696E',X'757365722E75736572',X'696E646578',X'5B5D',0,0,1), (399,177,'','会员附加权限',X'',X'757365722E75736572',X'',X'5B5D',0,0,1), (400,399,'','修改用户状态',X'',X'757365722E75736572',X'7365745F737461747573',X'5B5D',0,0,1), (401,399,'','编辑用户',X'61646D696E',X'757365722E75736572',X'65646974',X'5B5D',0,0,1), (402,399,'','更新用户',X'61646D696E',X'757365722E75736572',X'757064617465',X'5B5D',0,0,1), (403,399,'','查看用户',X'61646D696E',X'757365722E75736572',X'736565',X'5B5D',0,0,1), (405,399,'','发优惠券',X'61646D696E',X'756D702E73746F7265436F75706F6E55736572',X'6772616E74',X'5B5D',0,0,1), (406,399,'','推送图文',X'61646D696E',X'7765636861742E7765636861744E65777343617465676F7279',X'70757368',X'5B5D',0,0,1), (407,399,'','发站内信',X'61646D696E',X'757365722E757365724E6F74696365',X'6E6F74696365',X'5B5D',0,0,1), (415,371,'','分销管理附加权限',X'61646D696E',X'6167656E742E6167656E744D616E616765',X'',X'5B5D',0,0,1), (416,174,'','微信模版消息附加权限',X'61646D696E',X'7765636861742E77656368617454656D706C617465',X'',X'5B5D',0,0,1), (417,416,'','添加模版消息',X'61646D696E',X'7765636861742E77656368617454656D706C617465',X'73617665',X'5B5D',0,0,1), (418,416,'','添加模版消息展示',X'61646D696E',X'7765636861742E77656368617454656D706C617465',X'637265617465',X'5B5D',0,0,1), (419,416,'','编辑模版消息展示',X'61646D696E',X'7765636861742E77656368617454656D706C617465',X'65646974',X'5B5D',0,0,1), (420,416,'','更新模版消息展示',X'61646D696E',X'7765636861742E77656368617454656D706C617465',X'757064617465',X'5B5D',0,0,1), (421,416,'','删除模版消息展示',X'61646D696E',X'7765636861742E77656368617454656D706C617465',X'64656C657465',X'5B5D',0,0,1), (422,376,'','小程序模版消息附加权限',X'61646D696E',X'726F7574696E652E726F7574696E6554656D706C617465',X'',X'5B5D',0,0,1), (423,422,'','添加模版消息展示',X'61646D696E',X'726F7574696E652E726F7574696E6554656D706C617465',X'637265617465',X'5B5D',0,0,1), (424,422,'','添加模版消息',X'61646D696E',X'726F7574696E652E726F7574696E6554656D706C617465',X'73617665',X'5B5D',0,0,1), (425,422,'','编辑模版消息展示',X'61646D696E',X'726F7574696E652E726F7574696E6554656D706C617465',X'65646974',X'5B5D',0,0,1), (426,422,'','编辑模版消息',X'61646D696E',X'726F7574696E652E726F7574696E6554656D706C617465',X'757064617465',X'5B5D',0,0,1), (427,422,'','删除模版消息',X'61646D696E',X'726F7574696E652E726F7574696E6554656D706C617465',X'64656C657465',X'5B5D',0,0,1), (439,377,'','数据库备份附加权限',X'61646D696E',X'73797374656D2E73797374656D446174616261636B7570',X'',X'5B5D',0,0,1), (440,439,'','查看表结构',X'61646D696E',X'73797374656D2E73797374656D446174616261636B7570',X'7365657461626C65',X'5B5D',0,0,1), (441,439,'','优化表',X'61646D696E',X'73797374656D2E73797374656D446174616261636B7570',X'6F7074696D697A65',X'5B5D',0,0,1), (442,439,'','修复表',X'61646D696E',X'73797374656D2E73797374656D446174616261636B7570',X'726570616972',X'5B5D',0,0,1), (443,439,'','备份表',X'61646D696E',X'73797374656D2E73797374656D446174616261636B7570',X'6261636B7570',X'5B5D',0,0,1), (444,439,'','删除备份',X'61646D696E',X'73797374656D2E73797374656D446174616261636B7570',X'64656C46696C65',X'5B5D',0,0,1), (445,439,'','恢复备份',X'61646D696E',X'73797374656D2E73797374656D446174616261636B7570',X'696D706F7274',X'5B5D',0,0,1), (446,439,'','下载备份',X'61646D696E',X'73797374656D2E73797374656D446174616261636B7570',X'646F776E6C6F616446696C65',X'5B5D',0,0,1), (447,377,'','数据备份展示页',X'61646D696E',X'73797374656D2E73797374656D446174616261636B7570',X'696E646578',X'5B5D',0,0,1), (448,379,'','文件管理展示页',X'61646D696E',X'73797374656D2E73797374656D46696C65',X'696E646578',X'5B5D',0,0,1), (450,371,'','分销管理列表页',X'61646D696E',X'6167656E742E6167656E744D616E616765',X'696E646578',X'5B5D',0,0,1), (451,376,'','小程序模版消息列表页',X'61646D696E',X'726F7574696E652E726F7574696E6554656D706C617465',X'696E646578',X'5B5D',0,0,1), (452,174,'','微信模版消息列表页',X'61646D696E',X'7765636861742E77656368617454656D706C617465',X'696E646578',X'5B5D',0,0,1), (453,276,'','附件管理展示页',X'61646D696E',X'7769646765742E696D61676573',X'696E646578',X'5B5D',0,0,1), (456,151,'','会员等级',X'61646D696E',X'757365722E757365725F6C6576656C',X'696E646578',X'5B5D',0,1,1), (458,462,'','签到天数配置',X'61646D696E',X'73657474696E672E73797374656D5F67726F75705F64617461',X'696E646578',X'7B22676964223A223535227D',0,1,1), (459,462,'','订单详情动态图',X'61646D696E',X'73657474696E672E73797374656D5F67726F75705F64617461',X'696E646578',X'7B22676964223A223533227D',0,1,1), (460,462,'','个人中心菜单',X'61646D696E',X'73657474696E672E73797374656D5F67726F75705F64617461',X'696E646578',X'7B22676964223A223534227D',0,1,1), (461,462,'','小程序首页滚动新闻',X'61646D696E',X'73657474696E672E73797374656D5F67726F75705F64617461',X'696E646578',X'7B22676964223A223530227D',0,1,1), (462,289,'','数据配置',X'61646D696E',X'',X'',X'5B5D',100,1,1), (463,462,'','热门榜单推荐banner',X'61646D696E',X'73657474696E672E73797374656D5F67726F75705F64617461',X'696E646578',X'7B22676964223A223537227D',0,1,1), (464,462,'','首发新品推荐banner',X'61646D696E',X'73657474696E672E73797374656D5F67726F75705F64617461',X'696E646578',X'7B22676964223A223538227D',0,1,1), (465,462,'','促销单品推荐banner',X'61646D696E',X'73657474696E672E73797374656D5F67726F75705F64617461',X'696E646578',X'7B22676964223A223539227D',0,1,1), (466,462,'','个人中心分销海报',X'61646D696E',X'73657474696E672E73797374656D5F67726F75705F64617461',X'696E646578',X'7B22676964223A223630227D',0,1,1), (467,21,'','开发配置',X'61646D696E',X'73797374656D',X'',X'5B5D',0,1,1), (468,1,'','配置组合数据附加权限',X'61646D696E',X'73657474696E672E73797374656D5F64726F75705F64617461',X'696E646578',X'5B5D',0,0,1), (469,21,'','安全维护',X'61646D696E',X'73797374656D',X'',X'5B5D',0,1,1), (470,1,'','配置组合数据展示页',X'61646D696E',X'73657474696E672E73797374656D47726F7570',X'696E646578',X'5B5D',0,0,1), (471,462,'','小程序精品推荐',X'61646D696E',X'73657474696E672E73797374656D5F67726F75705F64617461',X'696E646578',X'7B22676964223A223532227D',0,1,1), (472,462,'','首页活动区域图片',X'61646D696E',X'73657474696E672E73797374656D5F67726F75705F64617461',X'696E646578',X'7B22676964223A223531227D',0,1,1), (473,273,'','秒杀配置',X'61646D696E',X'73657474696E672E73797374656D5F67726F75705F64617461',X'696E646578',X'7B22676964223A223439227D',0,1,1), (474,289,'','短信设置',X'61646D696E',X'736D73',X'696E646578',X'5B5D',1,1,1), (475,474,'','短信模板',X'61646D696E',X'736D732E736D7354656D706C6174654170706C79',X'696E646578',X'5B5D',0,1,1), (477,474,'','短信购买',X'61646D696E',X'736D732E736D73506179',X'696E646578',X'5B5D',0,1,1), (478,474,'','短信配置',X'61646D696E',X'736D732E736D73436F6E666967',X'696E646578',X'7B2274797065223A2234222C227461625F6964223A223138227D',1,1,1), (480,289,'','门店设置',X'61646D696E',X'73797374656D2E73797374656D5F73746F7265',X'696E646578',X'5B5D',0,1,1), (481,462,'','首页配置',X'61646D696E',X'73657474696E672E73797374656D5F67726F75705F64617461',X'696E646578',X'7B22676964223A223631227D',0,1,1), (482,462,'','充值金额设置',X'61646D696E',X'73657474696E672E73797374656D5F67726F75705F64617461',X'696E646578',X'7B22676964223A223632227D',0,1,1), (485,480,'','门店列表',X'61646D696E',X'73797374656D2E73797374656D5F73746F7265',X'696E646578',X'5B5D',0,1,1), (486,480,'','店员管理',X'61646D696E',X'73797374656D2E73797374656D5F73746F72655F7374616666',X'696E646578',X'5B5D',0,1,1), (487,480,'','核销订单',X'61646D696E',X'73797374656D2E73797374656D5F7665726966795F6F72646572',X'696E646578',X'5B5D',0,1,1), (488,23,'','商品规格',X'61646D696E',X'73746F72652E73746F72655F70726F647563745F72756C65',X'696E646578',X'5B5D',0,1,1), (489,289,'','物流设置',X'61646D696E',X'73657474696E67',X'',X'5B5D',0,1,1), (490,23,'','商品评价',X'61646D696E',X'73746F72652E73746F72655F70726F647563745F7265706C79',X'696E646578',X'5B5D',0,1,1), (492,474,'','短信记录',X'61646D696E',X'736D732E536D735265636F7264',X'696E646578',X'5B5D',0,1,1), (493,489,'','物流配置',X'61646D696E',X'73657474696E672E73797374656D436F6E666967',X'696E646578',X'7B227461625F6964223A223130222C2274797065223A2233227D',0,1,1), (494,489,'','城市数据',X'61646D696E',X'73657474696E672E73797374656D43697479',X'696E646578',X'5B5D',0,1,1), (495,489,'','运费模板',X'61646D696E',X'73657474696E672E7368697070696E6754656D706C61746573',X'696E646578',X'5B5D',0,1,1), (496,151,'','会员分组',X'61646D696E',X'757365722E757365725F67726F7570',X'696E646578',X'5B5D',0,1,1); /*!40000 ALTER TABLE `eb_system_menus` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_system_notice # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_notice`; CREATE TABLE `eb_system_notice` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '通知模板id', `title` varchar(64) NOT NULL DEFAULT '' COMMENT '通知标题', `type` varchar(64) NOT NULL DEFAULT '' COMMENT '通知类型', `icon` varchar(16) NOT NULL DEFAULT '' COMMENT '图标', `url` varchar(64) NOT NULL DEFAULT '' COMMENT '链接', `table_title` varchar(256) NOT NULL DEFAULT '' COMMENT '通知数据', `template` varchar(64) NOT NULL DEFAULT '' COMMENT '通知模板', `push_admin` varchar(128) NOT NULL DEFAULT '' COMMENT '通知管理员id', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `type` (`type`) USING BTREE, KEY `status` (`status`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='通知模板表'; # Dump of table eb_system_notice_admin # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_notice_admin`; CREATE TABLE `eb_system_notice_admin` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '通知记录ID', `notice_type` varchar(64) NOT NULL COMMENT '通知类型', `admin_id` smallint(5) unsigned NOT NULL COMMENT '通知的管理员', `link_id` int(10) unsigned NOT NULL COMMENT '关联ID', `table_data` text NOT NULL COMMENT '通知的数据', `is_click` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '点击次数', `is_visit` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '访问次数', `visit_time` int(11) NOT NULL COMMENT '访问时间', `add_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '通知时间', PRIMARY KEY (`id`) USING BTREE, KEY `admin_id` (`admin_id`,`notice_type`) USING BTREE, KEY `add_time` (`add_time`) USING BTREE, KEY `is_visit` (`is_visit`) USING BTREE, KEY `is_click` (`is_click`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='通知记录表'; # Dump of table eb_system_role # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_role`; CREATE TABLE `eb_system_role` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '身份管理id', `role_name` varchar(32) NOT NULL COMMENT '身份管理名称', `rules` text NOT NULL COMMENT '身份管理权限(menus_id)', `level` tinyint(3) unsigned NOT NULL DEFAULT '0', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `status` (`status`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='身份管理表'; LOCK TABLES `eb_system_role` WRITE; /*!40000 ALTER TABLE `eb_system_role` DISABLE KEYS */; INSERT INTO `eb_system_role` (`id`, `role_name`, `rules`, `level`, `status`, `create_time`, `update_time`) VALUES (1,'超级管理员','42,43,175,176,177,44,127,128,45,46,47,48,49,162,164,56,57,58,113,114,115,141,171,172,173,174,139,140,118,119,158,159,123,160,161,146,147,148,267,51,52,53,54,55,80,129,130,131,132,149,150,151,152,170,165,166,167,168,169,66,67,68,69,250',0,1,'2020-04-18 11:19:25','2020-08-13 10:32:11'), (2,'test Edit','42,43,44',111,1,'2020-04-18 11:19:25','2020-04-29 16:55:21'), (4,'南慕容','178,42,43,44,127,128,45,46,47,48,49,162,164,56,57,58,113,114,115,141,171,172,173,174,118,119,158,159,123,160,161,146,147,148,66,67,68,69,79',0,1,'2020-04-29 15:43:32','2020-08-05 10:34:21'), (5,'北乔峰','42,46,47,43,44,49',0,1,'2020-04-29 15:45:37','2020-04-29 15:45:37'), (6,'xx','43',0,0,'2020-04-29 15:46:17','2020-08-12 09:48:31'), (7,'演示站','42,43,44,127,128,45,46,47,48,49,162,164,56,57,58,113,114,115,141,171,172,173,174,118,119,158,159,123,160,161,146,147,148',0,1,'2020-08-12 09:45:19','2020-08-12 09:45:19'), (9,'2','56,57,58',0,0,'2020-08-12 09:55:00','2020-08-12 09:55:00'), (10,'3','113,114,115,141,171,172,173,174',0,0,'2020-08-12 09:55:06','2020-08-12 09:55:06'), (11,'4','118,119,158,159,123,160,161',0,0,'2020-08-12 09:55:16','2020-08-12 09:55:16'), (12,'5','51,52,53,54,55,80,149,150,151,152,170,165,166,167,168,169,66,67,68,69,79',0,0,'2020-08-12 09:55:22','2020-08-12 10:02:22'); /*!40000 ALTER TABLE `eb_system_role` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_system_store # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_store`; CREATE TABLE `eb_system_store` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '' COMMENT '门店名称', `introduction` varchar(1000) NOT NULL DEFAULT '' COMMENT '简介', `phone` char(25) NOT NULL DEFAULT '' COMMENT '手机号码', `address` varchar(255) NOT NULL DEFAULT '' COMMENT '省市区', `detailed_address` varchar(255) NOT NULL DEFAULT '' COMMENT '详细地址', `image` varchar(255) NOT NULL DEFAULT '' COMMENT '门店logo', `latitude` char(25) NOT NULL DEFAULT '' COMMENT '纬度', `longitude` char(25) NOT NULL DEFAULT '' COMMENT '经度', `valid_time` varchar(100) NOT NULL DEFAULT '' COMMENT '核销有效日期', `day_time` varchar(100) NOT NULL DEFAULT '' COMMENT '每日营业开关时间', `is_show` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否显示', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `phone` (`phone`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='门店自提'; LOCK TABLES `eb_system_store` WRITE; /*!40000 ALTER TABLE `eb_system_store` DISABLE KEYS */; INSERT INTO `eb_system_store` (`id`, `name`, `introduction`, `phone`, `address`, `detailed_address`, `image`, `latitude`, `longitude`, `valid_time`, `day_time`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (1,'测试门店','测试门店','15594500161','天津,河西区','测试门店','http://test.crmeb.net/uploads/attach/2019/09/20190929/2428fd6c55a68441c1bce80f0aa56909.png','34.34127','108.93984','2019-09-17 - 2019-10-31','05:00:00 - 23:00:00',1,1,'2020-04-17 12:02:07','2020-05-29 14:52:08'), (2,'测试门店','测试门店','15594500161','天津,河西区','测试门店','http://test.crmeb.net/uploads/attach/2019/09/20190929/2428fd6c55a68441c1bce80f0aa56909.png','34.34127','108.93984','2019-09-17 - 2019-10-31','05:00:00 - 23:00:00',1,0,'2020-04-17 12:02:07','2020-05-28 10:11:07'), (3,'测试门店','测试门店','15594500161','天津,河西区','测试门店','http://test.crmeb.net/uploads/attach/2019/09/20190929/2428fd6c55a68441c1bce80f0aa56909.png','34.34127','108.93984','2019-09-17 - 2019-10-31','05:00:00 - 23:00:00',1,1,'2020-04-17 12:02:07','2020-05-29 14:52:13'), (4,'测试门店','测试门店','15594500161','天津,河西区','测试门店','http://test.crmeb.net/uploads/attach/2019/09/20190929/2428fd6c55a68441c1bce80f0aa56909.png','34.34127','108.93984','2019-09-17 - 2019-10-31','05:00:00 - 23:00:00',1,1,'2020-04-17 12:02:07','2020-05-28 10:39:17'), (5,'测试门店','测试门店','15594500161','天津,河西区','测试门店','http://test.crmeb.net/uploads/attach/2019/09/20190929/2428fd6c55a68441c1bce80f0aa56909.png','34.34127','108.93984','2019-09-17 - 2019-10-31','05:00:00 - 23:00:00',0,0,'2020-04-17 12:02:07','2020-05-28 10:18:05'), (6,'测试门店','测试门店','15594500161','天津,河西区','测试门店','http://test.crmeb.net/uploads/attach/2019/09/20190929/2428fd6c55a68441c1bce80f0aa56909.png','34.34127','108.93984','2019-09-17 - 2019-10-31','05:00:00 - 23:00:00',1,1,'2020-04-17 12:02:07','2020-05-27 16:58:01'), (7,'测试门店','测试门店','15594500161','天津,河西区','测试门店','http://test.crmeb.net/uploads/attach/2019/09/20190929/2428fd6c55a68441c1bce80f0aa56909.png','34.34127','108.93984','2019-09-17 - 2019-10-31','05:00:00 - 23:00:00',1,1,'2020-04-17 12:02:07','2020-05-27 16:58:01'), (8,'测试门店','测试门店','15594500161','天津,河西区','测试门店','http://test.crmeb.net/uploads/attach/2019/09/20190929/2428fd6c55a68441c1bce80f0aa56909.png','34.34127','108.93984','2019-09-17 - 2019-10-31','05:00:00 - 23:00:00',1,1,'2020-04-17 12:02:07','2020-05-27 16:58:01'), (9,'测试门店','测试门店','15594500161','天津,河西区','测试门店','http://test.crmeb.net/uploads/attach/2019/09/20190929/2428fd6c55a68441c1bce80f0aa56909.png','34.34127','108.93984','2019-09-17 - 2019-10-31','05:00:00 - 23:00:00',0,1,'2020-04-17 12:02:07','2020-05-27 16:58:01'), (10,'测试门店','测试门店','15594500161','天津,河西区','测试门店','http://test.crmeb.net/uploads/attach/2019/09/20190929/2428fd6c55a68441c1bce80f0aa56909.png','34.34127','108.93984','2019-09-17 - 2019-10-31','05:00:00 - 23:00:00',0,1,'2020-04-17 12:02:07','2020-05-27 16:58:01'), (11,'测试门店','测试门店','15594500161','天津,河西区','测试门店','http://test.crmeb.net/uploads/attach/2019/09/20190929/2428fd6c55a68441c1bce80f0aa56909.png','34.34127','108.93984','2019-09-17 - 2019-10-31','05:00:00 - 23:00:00',0,1,'2020-04-17 12:02:07','2020-05-27 16:58:01'), (17,'地方地方','地方','15202362548','天津,河东区','地方地方','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.340368','108.939589','','',0,0,'2020-05-28 19:52:14','2020-05-28 19:52:14'), (18,'是多少','收到','15263263254','天津,河东区','收到','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.340362','108.940724','','',0,0,'2020-05-28 19:53:17','2020-05-28 19:53:17'), (19,'是多少热热',' 阿萨','15263251254','北京,西城区','阿萨','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.340362','108.940724','','',0,0,'2020-05-28 19:56:39','2020-05-28 19:56:39'), (20,'小程序','下次','18596521524','天津,河东区','下次','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.34127','108.93984','','',0,0,'2020-05-29 09:27:53','2020-05-29 09:27:53'), (21,'地方地方','地方','15263252154','天津,河东区','地方','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.34127','108.93984','','',0,0,'2020-05-29 09:30:17','2020-05-29 09:30:17'), (22,'地方地方','地方','18526325125','天津,河东区','地方','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.340362','108.940724','','',1,1,'2020-05-29 09:32:45','2020-05-29 09:54:32'), (23,'剩下的','收到','15263252145','天津,河东区','收到','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.34127','108.93984','','',1,1,'2020-05-29 09:34:38','2020-05-29 09:54:35'), (24,'收到','收到','15263252154','天津,河东区','收到','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.340362','108.940724','','',1,1,'2020-05-29 09:37:27','2020-05-29 09:41:29'), (25,'收到','收到','15263252145','天津,河东区','收到','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.34127','108.93984','','',1,1,'2020-05-29 09:39:54','2020-05-29 09:54:34'), (26,'是多少','收到','15263625215','天津,河东区','收到','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.34127','108.93984','','',1,1,'2020-05-29 09:42:18','2020-05-29 09:54:30'), (27,'收到','收到','15263251254','天津,河东区','收到','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.340362','108.940724','','',1,1,'2020-05-29 09:49:29','2020-05-29 09:54:29'), (28,'收到','收到','18596325215','北京,东城区','地方','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.34127','108.93984','','',1,1,'2020-05-29 09:52:20','2020-05-29 09:54:25'), (29,'收到收到','收到','15263252154','天津,河东区','收到','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.34127','108.93984','','',1,0,'2020-05-29 09:54:56','2020-05-29 11:25:48'), (30,'地方','地方','15263252154','天津,河东区','地方','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.340362','108.940724','','',1,0,'2020-05-29 10:09:01','2020-05-29 10:09:01'), (31,'地方','地方','15263252154','天津,河东区','地方','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.340362','108.940724','','',1,0,'2020-05-29 10:13:28','2020-05-29 10:13:28'), (32,'收到收到','收到','18596525125','天津,河东区','收到','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.34127','108.93984','','08:00:00-08:06:00',1,0,'2020-05-29 10:13:56','2020-05-29 11:25:44'), (33,'收到恢诡谲怪','收到','15263262515','河北,秦皇岛,北戴河区','收到','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.34127','108.93984','','08:00:00-08:06:00',1,0,'2020-05-29 10:59:44','2020-05-29 11:23:09'), (34,'sd','sd','15256325215','天津,河东区','sds','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.34127','108.93984','','08:00:00-08:05:00',0,0,'2020-05-29 14:25:19','2020-05-29 15:29:50'), (35,'sd','sd','15232652154','北京,东城区','sd','http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png','34.339195','108.936807','','08:00:00-08:05:00',0,0,'2020-05-29 14:31:23','2020-05-29 15:29:46'), (36,'众邦','众邦','18741256987','陕西,西安,未央区','上课的行列式的','image/product/2020/07/29/398c165115c247ba8ae79fc5cade8226tpf3ap2and.png','34.34127','108.93984','','08:00:00-19:04:02',1,0,'2020-07-29 16:11:19','2020-07-29 16:17:54'); /*!40000 ALTER TABLE `eb_system_store` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_system_store_staff # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_store_staff`; CREATE TABLE `eb_system_store_staff` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `uid` int(10) unsigned NOT NULL COMMENT '微信用户id', `avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '店员头像', `store_id` int(11) NOT NULL COMMENT '门店id', `staff_name` varchar(64) DEFAULT '' COMMENT '店员名称', `phone` char(15) DEFAULT NULL COMMENT '手机号码', `verify_status` tinyint(2) NOT NULL DEFAULT '0' COMMENT '核销开关', `status` tinyint(2) DEFAULT '1' COMMENT '状态', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='门店店员表'; LOCK TABLES `eb_system_store_staff` WRITE; /*!40000 ALTER TABLE `eb_system_store_staff` DISABLE KEYS */; INSERT INTO `eb_system_store_staff` (`id`, `uid`, `avatar`, `store_id`, `staff_name`, `phone`, `verify_status`, `status`, `create_time`, `update_time`) VALUES (5,9624,'http:\\/\\/kaifa.crmeb.net\\/uploads\\/attach\\/2019\\/08\\/20190807\\/723adbdd4e49a0f9394dfc700ab5dba3.png',33,'sdsdttt','15262362515',1,1,'2020-05-29 14:17:26','2020-07-29 16:42:09'), (6,0,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',33,'sdsd','15262362515',1,0,'2020-05-29 14:18:50','2020-05-29 15:39:24'), (7,4,'http://kaifa.crmeb.net/uploads/attach/2019/08/20190807/723adbdd4e49a0f9394dfc700ab5dba3.png',32,'asas','15263263254',1,1,'2020-05-29 14:20:33','2020-05-29 19:52:18'), (9,0,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',32,'sd','18525632548',1,1,'2020-05-29 14:22:46','2020-05-29 14:22:46'), (10,0,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',32,'sd ','15263251254',1,1,'2020-05-29 14:24:21','2020-05-29 14:24:21'), (11,0,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',29,'asa','15263262548',1,1,'2020-05-29 14:27:01','2020-05-29 14:27:01'), (12,0,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',29,'as','15263252125',1,1,'2020-05-29 14:29:01','2020-05-29 14:29:01'), (13,0,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',34,'4848','15263252154',0,0,'2020-05-29 14:32:30','2020-05-29 14:32:30'), (14,0,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',29,'sd','15896525125',0,0,'2020-05-29 14:34:26','2020-05-29 14:34:26'), (16,0,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',35,'asa','15263252154',1,1,'2020-05-29 14:36:25','2020-05-29 14:36:25'), (17,4,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',34,'sdsd','15263256325',1,1,'2020-05-29 14:37:19','2020-05-29 14:37:19'), (18,4,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',35,'as','15263252154',1,1,'2020-05-29 14:37:49','2020-05-29 14:37:49'), (19,4,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',34,'as','',1,1,'2020-05-29 14:41:06','2020-05-29 14:41:06'), (20,4,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',34,'sd','15263251254',1,1,'2020-05-29 14:43:12','2020-05-29 14:43:12'), (21,4,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',35,'as','15263262514',1,1,'2020-05-29 14:43:58','2020-05-29 14:43:58'), (22,4,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',34,'as','15263252154',1,1,'2020-05-29 14:45:54','2020-05-29 14:45:54'), (23,4,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',29,'as','15263263251',1,1,'2020-05-29 14:57:53','2020-05-29 14:57:53'), (24,4,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',29,'as','15263215456',1,1,'2020-05-29 14:58:35','2020-05-29 14:58:35'), (25,4,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',29,'as','14526325215',1,1,'2020-05-29 15:00:10','2020-05-29 15:00:10'), (26,4,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',34,'阿萨','14585251547',1,1,'2020-05-29 15:06:32','2020-05-29 15:06:32'), (27,4,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',33,'是的是的','15263252145',1,1,'2020-05-29 15:07:34','2020-05-29 15:07:34'), (28,4,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',29,'sdsdyyy','15263252154',0,0,'2020-05-29 15:39:54','2020-05-29 15:39:54'), (29,0,'http://admin.crmeb.net/uploads/attach/2020/05/20200515/d8dd47952e638c58c25633fa1009db1c.png',29,'as','15232521545',0,1,'2020-05-29 15:43:08','2020-05-29 15:43:08'), (30,5,'http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eoazqR3VXEYQQLgm7qJOvRkviaMiaOgY9GjAzHsFgmOoDsltBokViaHPXDbJV0icqkoIgBujdsJo1pqvA/132',31,'是的是的','15263252154',0,1,'2020-05-29 19:46:48','2020-05-29 19:46:48'); /*!40000 ALTER TABLE `eb_system_store_staff` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_system_user_level # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_user_level`; CREATE TABLE `eb_system_user_level` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '' COMMENT '会员名称', `experience` int(11) NOT NULL DEFAULT '0' COMMENT '达到多少升级经验', `is_show` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否显示 1=显示,0=隐藏', `grade` int(11) NOT NULL DEFAULT '0' COMMENT '会员等级', `discount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '享受折扣', `image` varchar(255) NOT NULL DEFAULT '' COMMENT '会员卡背景', `icon` varchar(255) NOT NULL DEFAULT '' COMMENT '会员图标', `memo` text COMMENT '说明', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除.1=删除,0=未删除', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='普通会员等级'; LOCK TABLES `eb_system_user_level` WRITE; /*!40000 ALTER TABLE `eb_system_user_level` DISABLE KEYS */; INSERT INTO `eb_system_user_level` (`id`, `name`, `experience`, `is_show`, `grade`, `discount`, `image`, `icon`, `memo`, `is_del`, `create_time`, `update_time`) VALUES (1,'我编辑的',20,1,0,0.00,'string','string','string',1,'2020-04-28 15:07:20','2020-06-08 16:30:48'), (2,'普通会员',10,1,1,100.00,'image/content/2020/08/11/f5aca226e3474a7fbaf1cd6843453090jmzxfdb941.jpg','image/content/2020/08/11/e98b96cbd0a04855b900922d8a2784e9gakrpe4ed8.jpeg','青铜会员',1,'2020-04-28 15:07:20','2020-08-12 18:06:04'), (3,'黄铜会员',500,1,3,95.00,'http://datong.crmeb.net/public/uploads/attach/2019/03/28/5c9ccca8c3bff.jpg','http://datong.crmeb.net/public/uploads/attach/2019/03/28/5c9ccca8e9365.png','黄铜会员',0,'2020-04-28 15:07:20','2020-08-12 17:44:25'), (4,'白银会员',1000,1,4,94.00,'http://datong.crmeb.net/public/uploads/attach/2019/03/28/5c9ccca8d6ae1.jpg','http://datong.crmeb.net/public/uploads/attach/2019/03/28/5c9ccca8a27f0.png','白银会员',0,'2020-04-28 15:07:20','2020-07-30 10:16:27'), (5,'黄金会员',2000,1,5,90.00,'http://datong.crmeb.net/public/uploads/attach/2019/03/28/5c9ccca8b27f1.jpg','http://datong.crmeb.net/public/uploads/attach/2019/03/28/5c9ccca8aa5b9.png','黄金会员',0,'2020-04-28 15:07:20','2020-07-30 10:16:31'), (6,'钻石会员',5000,1,6,88.00,'http://datong.crmeb.net/public/uploads/attach/2019/03/28/5c9ccca8dfe16.jpg','http://datong.crmeb.net/public/uploads/attach/2019/03/28/5c9ccca90d2d3.png','钻石会员',0,'2020-04-28 15:07:20','2020-07-30 10:16:36'), (8,'王者1',0,0,1,0.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/06/04/58f33186ccc34a6880b934013bd3a930.jpg','https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/06/04/33ee8156cc794254a25b9ae2ace9fcf7.jpg','123123123',1,'2020-04-28 15:15:26','2020-06-08 14:38:40'), (9,'string',0,1,0,0.00,'string','string','string',1,'2020-06-08 11:26:04','2020-06-08 14:51:41'), (10,'青铜青铜',0,0,1,0.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/06/04/58f33186ccc34a6880b934013bd3a930.jpg','https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/06/04/33ee8156cc794254a25b9ae2ace9fcf7.jpg','123123123',1,'2020-06-08 14:38:54','2020-07-30 10:07:41'), (11,'拉拉2',0,0,1,0.00,'https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/06/04/58f33186ccc34a6880b934013bd3a930.jpg','https://wuht-1300909283.cos.ap-chengdu.myqcloud.com/image/product/2020/06/04/33ee8156cc794254a25b9ae2ace9fcf7.jpg','123123123',1,'2020-06-08 14:39:53','2020-07-30 10:07:43'), (12,'string',0,1,1,1.00,'string','string','string',1,'2020-06-08 14:41:07','2020-06-08 14:51:28'), (13,'我是新增的数据',0,0,1,1.00,'string','1','string',1,'2020-06-08 14:41:59','2020-07-30 10:07:46'), (14,'test',999,1,1,9.00,'image/content/2020/08/11/7c9f696b191e49f2ad935fa4f63ea1d3uq9j4ff4d4.jpg','image/content/2020/08/12/13813b1c58914aeda67d8a4ebc4f8aef21sje7kyiy.jpg',NULL,1,'2020-08-12 20:36:41','2020-08-13 11:50:23'), (15,'test2',11,1,1,11.00,'image/content/2020/08/11/7c9f696b191e49f2ad935fa4f63ea1d3uq9j4ff4d4.jpg','image/content/2020/08/11/7c9f696b191e49f2ad935fa4f63ea1d3uq9j4ff4d4.jpg',NULL,1,'2020-08-12 20:37:02','2020-08-13 11:50:25'), (16,'test3',1,1,1,1.00,'image/store/2020/08/11/c79e9cda47db47748da64fd5bd4d1a30l2wpoycstu.png','image/store/2020/08/11/c79e9cda47db47748da64fd5bd4d1a30l2wpoycstu.png',NULL,1,'2020-08-12 20:37:17','2020-08-13 11:50:27'), (17,'超级会员',1000000,1,999,1.00,'image/content/2020/08/10/ad3bd819f1e84caeabbb858d0f1cef8eanuapqav4n.jpg','image/content/2020/08/10/8ce87292dbd1472a9c0189612750a698mn9oqrqfzi.png',NULL,0,'2020-08-13 11:12:47','2020-08-13 11:12:47'); /*!40000 ALTER TABLE `eb_system_user_level` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_system_user_task # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_system_user_task`; CREATE TABLE `eb_system_user_task` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '' COMMENT '任务名称', `real_name` varchar(255) NOT NULL DEFAULT '' COMMENT '配置原名', `task_type` varchar(50) NOT NULL DEFAULT '' COMMENT '任务类型', `number` int(11) NOT NULL DEFAULT '0' COMMENT '限定数', `level_id` int(11) NOT NULL DEFAULT '0' COMMENT '等级id', `sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序', `is_show` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否显示', `is_must` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否务必达成任务,1务必达成,0=满足其一', `illustrate` varchar(255) NOT NULL DEFAULT '' COMMENT '任务说明', `add_time` int(11) NOT NULL DEFAULT '0' COMMENT '新增时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='等级任务设置'; LOCK TABLES `eb_system_user_task` WRITE; /*!40000 ALTER TABLE `eb_system_user_task` DISABLE KEYS */; INSERT INTO `eb_system_user_task` (`id`, `name`, `real_name`, `task_type`, `number`, `level_id`, `sort`, `is_show`, `is_must`, `illustrate`, `add_time`) VALUES (1,'满足积分100分','积分数','SatisfactionIntegral',100,1,0,1,1,'',1553827616), (2,'消费满100元','消费金额','ConsumptionAmount',100,1,0,1,1,'',1553827625), (3,'满足积分200分','积分数','SatisfactionIntegral',200,2,0,1,1,'',1553827638), (4,'累计签到20天','累计签到','CumulativeAttendance',20,2,0,1,1,'',1553827681), (5,'满足积分500分','积分数','SatisfactionIntegral',500,3,0,1,1,'',1553827695), (6,'累计签到30天','累计签到','CumulativeAttendance',30,3,0,1,1,'',1553827703), (7,'满足积分1000分','积分数','SatisfactionIntegral',1000,4,0,1,1,'',1553827731), (8,'分享给朋友10次','分享给朋友','SharingTimes',10,4,0,1,1,'',1553827740), (9,'满足积分1200分','积分数','SatisfactionIntegral',1200,5,0,1,1,'',1553827759), (10,'累计签到60天','累计签到','CumulativeAttendance',60,5,0,1,1,'',1553827768), (11,'消费5次','消费次数','ConsumptionFrequency',5,5,0,1,1,'',1553827776), (12,'满足积分2000分','积分数','SatisfactionIntegral',2000,6,0,1,1,'',1553827791), (13,'消费满10000元','消费次数','ConsumptionAmount',10000,6,0,1,1,'',1553827803), (14,'累计签到100天','累计签到','CumulativeAttendance',100,6,0,1,1,'',1553827814); /*!40000 ALTER TABLE `eb_system_user_task` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_template_message # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_template_message`; CREATE TABLE `eb_template_message` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '模板id', `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=订阅消息,1=微信模板消息', `temp_key` char(50) NOT NULL DEFAULT '' COMMENT '模板编号', `name` char(100) NOT NULL COMMENT '模板名', `content` varchar(1000) NOT NULL COMMENT '回复内容', `temp_id` char(100) DEFAULT NULL COMMENT '模板ID', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='微信模板'; LOCK TABLES `eb_template_message` WRITE; /*!40000 ALTER TABLE `eb_template_message` DISABLE KEYS */; INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (5,0,'1458','发货通知Test','快递单号{{character_string2.DATA}}\n快递公司{{thing1.DATA}}\n发货时间{{time3.DATA}}\n订单商品{{thing5.DATA}}','vBrJgvoj4CgBOUIVQcRfsUkYun4orcllCfQ11SSs4wk',1,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (6,0,'3098','拼团成功通知','活动名称{{thing1.DATA}}\n团长{{name3.DATA}}\n开团时间{{date5.DATA}}\n成团人数{{number2.DATA}}','V9fd7ssFZr5_twdgf--RfAExR4N08zU9Hk9auWDAI8g',1,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (7,0,'2727','砍价成功通知','商品名称{{thing1.DATA}}\n底价{{amount2.DATA}}\n备注{{thing3.DATA}}','ehNGy-NRBJIENTdlwT8nBddGW2B4dPo6eKv3x1H6fOg',1,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (8,0,'3116','核销成功通知','商品名称{{thing2.DATA}}\n订单号{{character_string3.DATA}}\n核销时间{{time4.DATA}}','5wiR0TK43wguWdGzexocKvn9-nhELiJtoBKeqptsf84',1,'2020-06-16 10:44:44','2020-08-10 17:23:12'), (9,0,'1476','新订单提醒','订单商品{{thing2.DATA}}\n订单金额{{amount3.DATA}}\n订单编号{{character_string4.DATA}}\n订单时间{{date6.DATA}}\n订单类型{{thing1.DATA}}','F7ju2FdKqFQ8rXXzkB34HSYKa5_kOzJrpF9EZQc1pJ8',1,'2020-06-16 10:44:44','2020-08-10 17:23:14'), (10,0,'1451','退款通知','退款状态{{thing1.DATA}}\n退款商品{{thing2.DATA}}\n退款金额{{amount3.DATA}}\n退款单号{{character_string6.DATA}}','aqp6PzdU9vCUOUCHsuGFWvkZgp_cGQ_RKW7XCe9118I',1,'2020-06-16 10:44:44','2020-08-10 17:23:15'), (11,0,'OPENTM200565260','充值成功通知','交易单号{{rechargeOrderId.DATA}}\n充值金额{{rechargeAmount.DATA}}\n账户余额{{rechargeAfterBalance.DATA}}\n充值时间{{rechargeDate.DATA}}','_0KAysps9Yj0SM3nacaF_9xw77w1NQYjOpnl4TQAp7k',1,'2020-06-16 10:44:44','2020-08-10 17:23:38'), (12,0,'1927','付款成功通知','付款单号{{character_string1.DATA}}\n付款金额{{amount2.DATA}}\n付款时间{{date3.DATA}}','jY2vT0Fge2srW9Izc-3wEE6WII-FQBvEi2J_duiAAck',1,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (13,0,'1468','申请退款通知','订单编号{{character_string4.DATA}}\n申请时间{{date5.DATA}}\n订单金额{{amount2.DATA}}\n退款状态{{phrase7.DATA}}\n备注{{thing8.DATA}}','NOfT3qoOS3hkSzwt2LJg_LnU0NBzwSHXkSwKdx6QDwc',0,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (14,0,'335','积分到账提醒','订单编号{{character_string2.DATA}}\n商品名称{{thing3.DATA}}\n支付金额{{amount4.DATA}}\n获得积分{{number5.DATA}}\n累计积分{{number6.DATA}}','TtdbifwMN-6D3hNld8jTc97A8Ohlqg4FtgmIgB28JPc',0,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (15,0,'3353','拼团状态通知','商品名称{{thing2.DATA}}\n拼团人数{{thing1.DATA}}\n备注{{thing3.DATA}}','LkYDDYO-HQKT7NydGjrN7AJ1OUCf3mgZf3otVruhxOo',0,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (16,1,'OPENTM200565259','订单发货提醒','{{first.DATA}}\n订单编号:{{keyword1.DATA}}\n物流公司:{{keyword2.DATA}}\n物流单号:{{keyword3.DATA}}\n{{remark.DATA}}','OvTnfQvI-KUdf0C4FeHk9dIspw8AeqrzX70KXBusQhs',1,'2020-06-16 10:44:44','2020-06-16 14:52:20'), (17,1,'OPENTM413386489','订单收货通知','{{first.DATA}}\n订单编号:{{keyword1.DATA}}\n订单状态:{{keyword2.DATA}}\n收货时间:{{keyword3.DATA}}\n商品详情:{{keyword4.DATA}}\n{{remark.DATA}}','UNyz81kgsn1WZHSqmwPiF9fUkcdZghfTZvN6qtDuu54',0,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (18,1,'OPENTM410119152','退款进度通知','{{first.DATA}}\n订单编号:{{keyword1.DATA}}\n订单金额:{{keyword2.DATA}}\n下单时间:{{keyword3.DATA}}\n{{remark.DATA}}','xrXtApBFv0L3-YXKkl9WYB89hJxFGfQo3jSsk2WpAwI',1,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (19,1,'OPENTM405847076','帐户资金变动提醒','{{first.DATA}}\n变动类型:{{keyword1.DATA}}\n变动时间:{{keyword2.DATA}}\n变动金额:{{keyword3.DATA}}\n{{remark.DATA}}','Bk3XLd1Nwk9aNF1NIPBlyTDhrgNbzJW4H23OwVQdE-s',0,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (20,1,'OPENTM207707249','订单发货提醒','\n{{first.DATA}}\n商品明细:{{keyword1.DATA}}\n下单时间:{{keyword2.DATA}}\n配送地址:{{keyword3.DATA}}\n配送人:{{keyword4.DATA}}\n联系电话:{{keyword5.DATA}}\n{{remark.DATA}}','bnEgLT2wzPT7oCW_N1sCngCB0e_exulfECdgHREfzt0',0,'2020-06-16 10:44:44','2020-06-16 15:36:40'), (21,1,'OPENTM408237350','服务进度提醒','{{first.DATA}}\n服务类型:{{keyword1.DATA}}\n服务状态:{{keyword2.DATA}}\n服务时间:{{keyword3.DATA}}\n{{remark.DATA}}','ul2g_y0oxqEhtWoSJBbLzmnPrUwtLnIAe30MTBRL7rw',0,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (22,1,'OPENTM204431262','客服通知提醒','{{first.DATA}}\n客户名称:{{keyword1.DATA}}\n客服类型:{{keyword2.DATA}}\n提醒内容:{{keyword3.DATA}}\n通知时间:{{keyword4.DATA}}\n{{remark.DATA}}','j51mawxEmTuCCtMrXwSTnRfXH93qutoOebs5RG4MyHY',0,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (23,1,'OPENTM407456411','拼团成功通知','{{first.DATA}}\n订单编号:{{keyword1.DATA}}\n团购商品:{{keyword2.DATA}}\n{{remark.DATA}}','CNvCAz9GIoQri-ogSCODVRANCBUQjZIxWzWvizbHVoQ',0,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (24,1,'OPENTM401113750','拼团失败通知','{{first.DATA}}\n拼团商品:{{keyword1.DATA}}\n商品金额:{{keyword2.DATA}}\n退款金额:{{keyword3.DATA}}\n{{remark.DATA}}','mSg4ZexW1qaQH3FCrFLe746EYMlTFsZhfTB6VI_ElYg',0,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (25,1,'OPENTM205213550','订单生成通知','{{first.DATA}}\n时间:{{keyword1.DATA}}\n商品名称:{{keyword2.DATA}}\n订单号:{{keyword3.DATA}}\n{{remark.DATA}}','HYD99ERso6_PcA3hAT6pzH1RmO88H6IIe8crAVaXPRE',0,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (26,1,'OPENTM207791277','订单支付成功通知','{{first.DATA}}\n订单编号:{{keyword1.DATA}}\n支付金额:{{keyword2.DATA}}\n{{remark.DATA}}','hJV1d1OwWB_lbPrSaRHi9RGr5CFAF4PJcZdYeg73Mtg',0,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (27,1,'OPENTM410292733','砍价成功提醒','{{first.DATA}}\n商品名称:{{keyword1.DATA}}\n底价:{{keyword2.DATA}}\n{{remark.DATA}}','SxBvid65JxK6PWOhlC2sgCG_mlopY1uKekEnEvAALp4',0,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (28,1,'OPENTM414349441','开团成功通知','{{first.DATA}}\n拼团名称:{{keyword1.DATA}}\n团购价格:{{keyword2.DATA}}\n拼团人数:{{keyword3.DATA}}\n{{remark.DATA}}','VDTU6X1UiK438tu-qcHKc_I76CtsEWVx-_Pbf1voiws',0,'2020-06-16 10:44:44','2020-06-16 14:15:19'), (29,0,'1134','订单取消通知Stivepeim','取消原因{{thing1.DATA}}\n订单号{{number7.DATA}}\n取消时间{{date2.DATA}}\n订单类型{{thing5.DATA}}','xBilsNHAH527HBqrMgNoIA_biTfQ7A_bCbMxMx1uMM0',0,'2020-06-16 10:44:44','2020-06-16 14:48:41'), (30,1,'string','string','string','string',0,'2020-06-16 10:44:44','2020-06-16 10:45:36'), (32,1,'2','e','e','2',0,'2020-06-16 10:44:44','2020-06-16 14:43:22'); /*!40000 ALTER TABLE `eb_template_message` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_user # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_user`; CREATE TABLE `eb_user` ( `uid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户id', `account` varchar(32) NOT NULL DEFAULT '' COMMENT '用户账号', `pwd` varchar(32) DEFAULT '' COMMENT '用户密码', `real_name` varchar(25) DEFAULT '' COMMENT '真实姓名', `birthday` varchar(32) DEFAULT '0' COMMENT '生日', `card_id` varchar(20) DEFAULT '' COMMENT '身份证号码', `mark` varchar(255) DEFAULT '' COMMENT '用户备注', `partner_id` int(11) DEFAULT '0' COMMENT '合伙人id', `group_id` varchar(255) DEFAULT '' COMMENT '用户分组id', `tag_id` varchar(255) DEFAULT '' COMMENT '标签id', `nickname` varchar(16) DEFAULT '' COMMENT '用户昵称', `avatar` varchar(256) DEFAULT '' COMMENT '用户头像', `phone` char(15) DEFAULT NULL COMMENT '手机号码', `add_ip` varchar(16) DEFAULT '' COMMENT '添加ip', `last_ip` varchar(16) DEFAULT '' COMMENT '最后一次登录ip', `now_money` decimal(8,2) unsigned DEFAULT '0.00' COMMENT '用户余额', `brokerage_price` decimal(8,2) DEFAULT '0.00' COMMENT '佣金金额', `integral` decimal(8,2) unsigned DEFAULT '0.00' COMMENT '用户剩余积分', `experience` int(11) unsigned DEFAULT '0' COMMENT '用户剩余经验', `sign_num` int(11) DEFAULT '0' COMMENT '连续签到天数', `status` tinyint(1) DEFAULT '1' COMMENT '1为正常,0为禁止', `level` tinyint(2) unsigned DEFAULT '0' COMMENT '等级', `spread_uid` int(10) unsigned DEFAULT '0' COMMENT '推广元id', `spread_time` timestamp NULL DEFAULT NULL COMMENT '推广员关联时间', `user_type` varchar(32) NOT NULL DEFAULT '' COMMENT '用户类型', `is_promoter` tinyint(1) unsigned DEFAULT '0' COMMENT '是否为推广员', `pay_count` int(11) unsigned DEFAULT '0' COMMENT '用户购买次数', `spread_count` int(11) DEFAULT '0' COMMENT '下级人数', `addres` varchar(255) DEFAULT '' COMMENT '详细地址', `adminid` int(11) unsigned DEFAULT '0' COMMENT '管理员编号 ', `login_type` varchar(36) NOT NULL DEFAULT '' COMMENT '用户登陆类型,h5,wechat,routine', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `last_login_time` timestamp NULL DEFAULT NULL COMMENT '最后一次登录时间', `clean_time` timestamp NULL DEFAULT NULL COMMENT '清除时间', `path` varchar(255) NOT NULL DEFAULT '/0/' COMMENT '推广等级记录', `subscribe` tinyint(3) DEFAULT '0' COMMENT '是否关注公众号', `subscribe_time` timestamp NULL DEFAULT NULL COMMENT '关注公众号时间', PRIMARY KEY (`uid`) USING BTREE, UNIQUE KEY `account` (`account`), KEY `spreaduid` (`spread_uid`) USING BTREE, KEY `level` (`level`) USING BTREE, KEY `status` (`status`) USING BTREE, KEY `is_promoter` (`is_promoter`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户表'; LOCK TABLES `eb_user` WRITE; /*!40000 ALTER TABLE `eb_user` DISABLE KEYS */; INSERT INTO `eb_user` (`uid`, `account`, `pwd`, `real_name`, `birthday`, `card_id`, `mark`, `partner_id`, `group_id`, `tag_id`, `nickname`, `avatar`, `phone`, `add_ip`, `last_ip`, `now_money`, `brokerage_price`, `integral`, `experience`, `sign_num`, `status`, `level`, `spread_uid`, `spread_time`, `user_type`, `is_promoter`, `pay_count`, `spread_count`, `addres`, `adminid`, `login_type`, `create_time`, `update_time`, `last_login_time`, `clean_time`, `path`, `subscribe`, `subscribe_time`) VALUES (9624,'18991352728','6qcwfgNVMAHxPuwIm863EA==','张先生','2020-01-05','1','',0,'6','6,5,4','string','image/user/2020/08/11/ee6640b1c4d14e43909883268c8cfb267pyx0y682l.jpeg','18991352728','127.0.0.1','127.0.0.1',972337.29,999799.99,80.00,750,6,1,2,9624,NULL,'h5',1,1,0,'1',0,'','2020-05-21 14:41:53','2020-08-13 15:31:17',NULL,NULL,'/0/',0,NULL), (9625,'4a221ae4de8bea502ce62977d61542da','','','0','','',0,'','','小小','https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLu3MgZBAyyiagUVvpnLOvfpdXpGkXJ6dml7OllJoB6lWO2PbCMNJ1ia2MkRVavsRkTWmElG9nibxAibQ/132',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'routine',0,0,0,'中国,陕西,西安',0,'','2020-07-31 19:03:41','2020-07-31 19:03:41',NULL,NULL,'/0/',0,NULL), (9626,'51e1d99688e75d302a952062133e3fcb','','','0','','',0,'','','小小','https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLu3MgZBAyyiagUVvpnLOvfpdXpGkXJ6dml7OllJoB6lWO2PbCMNJ1ia2MkRVavsRkTWmElG9nibxAibQ/132',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'routine',0,0,0,'中国,陕西,西安',0,'','2020-07-31 19:04:36','2020-07-31 19:04:36',NULL,NULL,'/0/',0,NULL), (9627,'bc76f27cae61bfbc19454ecedd3ce8d9','','','0','','',0,'','','string','string',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'routine',0,0,0,'string,string,string',0,'','2020-07-31 19:05:24','2020-07-31 19:05:24',NULL,NULL,'/0/',0,NULL), (9628,'3239c9e224bcf63547424f403179a985','','','0','','',0,'','','string','string',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'routine',0,0,0,'string,string,string',0,'','2020-07-31 19:05:49','2020-07-31 19:05:49',NULL,NULL,'/0/',0,NULL), (9629,'a3613f82dabc13ea686a4ac74c2483c8','','','0','','',0,'','','string','string',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'routine',0,0,0,'string,string,string',0,'','2020-07-31 19:06:45','2020-07-31 19:06:45',NULL,NULL,'/0/',0,NULL), (9630,'576a893f4c1ae58af6ffb443c63dd33e','','','0','','',0,'','','string','string',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'routine',0,0,0,'string,string,string',0,'','2020-07-31 19:06:50','2020-07-31 19:06:50',NULL,NULL,'/0/',0,NULL), (9631,'80c35cedb316bf32da7f619aa85fbdea','','','0','','',0,'','','string','string',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'routine',0,0,0,'string,string,string',0,'','2020-07-31 19:06:59','2020-07-31 19:06:59',NULL,NULL,'/0/',0,NULL), (9632,'91c3904c5d3b8fcba9c47f1a7eb194c7','','','0','','',0,'','','string','string',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'routine',0,0,0,'string,string,string',0,'','2020-07-31 19:07:04','2020-07-31 19:07:04',NULL,NULL,'/0/',0,NULL), (9633,'e03942f98d846b98f8e10ad374a023dd','','','0','','',0,'','','小小','https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLu3MgZBAyyiagUVvpnLOvfpdXpGkXJ6dml7OllJoB6lWO2PbCMNJ1ia2MkRVavsRkTWmElG9nibxAibQ/132',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'routine',0,0,0,'中国,陕西,西安',0,'','2020-07-31 19:07:22','2020-07-31 19:07:22',NULL,NULL,'/0/',0,NULL), (9634,'56ec65fd619af6afae16f86fca06627d','','','0','','',0,'','','小小','https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLu3MgZBAyyiagUVvpnLOvfpdXpGkXJ6dml7OllJoB6lWO2PbCMNJ1ia2MkRVavsRkTWmElG9nibxAibQ/132',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'routine',0,0,0,'中国,陕西,西安',0,'','2020-07-31 19:08:49','2020-07-31 19:08:49',NULL,NULL,'/0/',0,NULL), (9635,'55ceb6e15a04b1406558812621ac09ec','','','0','','',0,'','','小小','https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLu3MgZBAyyiagUVvpnLOvfpdXpGkXJ6dml7OllJoB6lWO2PbCMNJ1ia2MkRVavsRkTWmElG9nibxAibQ/132',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'routine',0,0,0,'中国,陕西,西安',0,'','2020-07-31 19:12:27','2020-07-31 19:12:27',NULL,NULL,'/0/',0,NULL), (9636,'76fe9f001bc7d6763c445e8514be58dc','','','0','','',0,'','','小小','https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLu3MgZBAyyiagUVvpnLOvfpdXpGkXJ6dml7OllJoB6lWO2PbCMNJ1ia2MkRVavsRkTWmElG9nibxAibQ/132',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'routine',0,0,0,'中国,陕西,西安',0,'','2020-07-31 19:12:47','2020-07-31 19:12:47',NULL,NULL,'/0/',0,NULL), (9637,'8d2c55567e9aba583f4689d7cf389451','','','0','','',0,'','','小小','https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLu3MgZBAyyiagUVvpnLOvfpdXpGkXJ6dml7OllJoB6lWO2PbCMNJ1ia2MkRVavsRkTWmElG9nibxAibQ/132',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'routine',0,0,0,'中国,陕西,西安',0,'','2020-07-31 19:15:51','2020-07-31 19:15:51',NULL,NULL,'/0/',0,NULL), (9638,'59f24c8925497bbeae4454486ef95516','','','0','','',0,'','','string','string',NULL,'','',0.00,0.00,0.00,0,2,1,0,0,NULL,'routine',0,0,0,'string,string,string',0,'','2020-07-31 21:54:20','2020-07-31 21:54:20',NULL,NULL,'/0/',0,NULL), (9639,'15202908783','RPDxkJv52UjZREHH4Xjg2w==','','0','','',0,'','','6fe527e0b72e','http:\\/\\/kaifa.crmeb.net\\/uploads\\/attach\\/2019\\/08\\/20190807\\/723adbdd4e49a0f9394dfc700ab5dba3.png','15202908783','127.0.0.1','127.0.0.1',0.00,0.00,0.00,0,0,1,0,0,NULL,'h5',0,0,0,'',0,'','2020-08-06 14:32:03','2020-08-06 14:32:03',NULL,NULL,'/0/',0,NULL), (9641,'18292417675','tXtfIiup56qU1//Y16+72A==','','0','','',0,'0','0','dac2c982a44a','http:\\/\\/kaifa.crmeb.net\\/uploads\\/attach\\/2019\\/08\\/20190807\\/723adbdd4e49a0f9394dfc700ab5dba3.png','18292417675','1.80.117.122','1.80.117.122',94534.00,0.00,0.00,0,0,1,2,0,NULL,'h5',0,2,0,'',0,'','2020-08-10 14:16:23','2020-08-13 15:36:27',NULL,NULL,'/0/',0,NULL), (9643,'13720673941','af1AT5jT0kW1uzXGXLi8/w==','张三丰','0','610528199312110912','',0,'9',',1,4,','小张','image/user/2020/08/12/5664282626eb43f6a3ff13e61c810689rxgpb0h23h.jpg','13720673941','1.80.112.32','1.80.112.32',1000.00,0.00,1000.00,0,2,1,17,0,NULL,'h5',1,0,0,'陕西省西安市未央区',0,'','2020-08-11 09:17:26','2020-08-13 11:37:00',NULL,NULL,'/0/',0,NULL), (9675,'2ac13437c2a1f8c52d85b9fa46dbb7e0','','','0','','',0,'','','小小','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,西安',0,'','2020-08-11 14:35:34','2020-08-11 14:35:34',NULL,NULL,'/0/',0,NULL), (9942,'b1f90274562ef56a022dd2d19d6a32a5','','','0','','',0,'','','等风来,随风去','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,安康',0,'','2020-08-11 14:43:49','2020-08-11 14:43:49',NULL,NULL,'/0/',0,NULL), (10222,'210fc09a6e18596f0421e69d7f6b6eb0','','','0','','',0,'','','吴汐','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'德国,慕尼黑,',0,'','2020-08-11 14:51:55','2020-08-11 14:51:55',NULL,NULL,'/0/',0,NULL), (10246,'15094024404','ZUgn7nBct5bn8ombwK8mpw==','','0','','',0,'','','0223b9cf1fac','http:\\/\\/kaifa.crmeb.net\\/uploads\\/attach\\/2019\\/08\\/20190807\\/723adbdd4e49a0f9394dfc700ab5dba3.png','15094024404','117.39.194.60','117.39.194.60',0.00,0.00,0.00,0,0,1,0,0,NULL,'h5',0,0,0,'',0,'','2020-08-11 14:53:21','2020-08-11 14:53:21',NULL,NULL,'/0/',0,NULL), (10249,'8894d1c6ac0a03943e03ea81c54c8d11','','','0','','',0,'','','小小','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,西安',0,'','2020-08-11 15:10:16','2020-08-11 15:10:16',NULL,NULL,'/0/',0,NULL), (10250,'718fb30dc85da7330bc9d63c378fa9a5','','','0','','',0,'','','小小','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,西安',0,'','2020-08-11 15:32:01','2020-08-11 15:32:01',NULL,NULL,'/0/',0,NULL), (10251,'624e585febb0978320ad847c818b3b53','','','0','','',0,'','','等风来,随风去','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,安康',0,'','2020-08-11 16:49:44','2020-08-11 16:49:44',NULL,NULL,'/0/',0,NULL), (10252,'ce09da4fbbe724fe16b026d868bf2f4a','','','0','','',0,'','','吴汐','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'德国,慕尼黑,',0,'','2020-08-11 17:08:31','2020-08-11 17:08:31',NULL,NULL,'/0/',0,NULL), (10255,'cee5d9906f6b9607baa062ac76646c87','','','0','','',0,'','','弱冠而立_','',NULL,'','',0.00,0.00,0.00,0,1,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,西安',0,'','2020-08-11 20:44:33','2020-08-11 20:44:33',NULL,NULL,'/0/',0,NULL), (10256,'13299010037','d00jbLC4jZtJemaK8HmUHA==','','0','','',0,'','','2c5e9050f919','http:\\/\\/kaifa.crmeb.net\\/uploads\\/attach\\/2019\\/08\\/20190807\\/723adbdd4e49a0f9394dfc700ab5dba3.png','13299010037','1.80.114.245','1.80.114.245',0.00,0.00,0.00,0,0,1,0,0,NULL,'h5',0,0,0,'',0,'','2020-08-12 09:26:48','2020-08-12 09:26:48',NULL,NULL,'/0/',0,NULL), (10257,'538c850a39b9b2cea71b085ada64a61a','','','0','','',0,'','','怪兽的猫 _','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'埃及,,',0,'','2020-08-12 10:05:24','2020-08-12 10:05:24',NULL,NULL,'/0/',0,NULL), (10260,'884946829a69f16c649a6273ec80bd59','','','0','','',0,'','','小小','https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTI3xc0IChicpvqqcCUj80Eh5n26dgB6KO0TLKhQNnX0F7EPxYXDCuXFyaxUGS12zHIvUNF0dCqoN0A/132',NULL,'','',110.60,0.00,111.00,0,0,1,0,0,NULL,'routine',0,0,0,'中国,陕西,西安',0,'','2020-08-12 12:30:00','2020-08-12 22:11:49',NULL,NULL,'/0/',0,NULL), (10261,'c254fb9657ea49055a996d6fa1074937','','','0','','',0,'','','小小','',NULL,'','',99981.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,西安',0,'','2020-08-12 14:25:30','2020-08-12 15:58:42',NULL,NULL,'/0/',0,NULL), (10262,'6829ec81f73d4a6176a46b3dd8764fce','','','0','','',0,'','','木子刀客','',NULL,'','',0.00,0.00,0.00,0,1,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,西安',0,'','2020-08-12 14:27:24','2020-08-12 14:27:24',NULL,NULL,'/0/',0,NULL), (10263,'d4ec6154d5393ea89bd95c8c215b8277','','','0','','',0,'','','等风来,随风去','',NULL,'','',210.00,0.00,210.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,安康',0,'','2020-08-12 15:54:11','2020-08-12 16:35:57',NULL,NULL,'/0/',0,NULL), (10264,'13309212766','qyavJ6Oz3lNZWzXV2ECspg==','','0','','',0,'0','0','0403ec8503bd','http:\\/\\/kaifa.crmeb.net\\/uploads\\/attach\\/2019\\/08\\/20190807\\/723adbdd4e49a0f9394dfc700ab5dba3.png','13309212766','1.80.114.245','1.80.114.245',11000.00,0.00,11000.00,0,0,1,0,0,NULL,'h5',1,0,0,'',0,'','2020-08-12 17:15:48','2020-08-12 17:31:54',NULL,NULL,'/0/',0,NULL), (10265,'74ad6aeab41568b4b9c8841f49000b9c','','','0','','',0,'','','怪兽的猫 _','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'埃及,,',0,'','2020-08-12 20:45:55','2020-08-12 20:45:55',NULL,NULL,'/0/',0,NULL), (10266,'78f6a05c1ea5ae98e527246d91754d2a','','','0','','',0,'','','鑫诩','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,北京,昌平',0,'','2020-08-12 21:01:12','2020-08-12 21:01:12',NULL,NULL,'/0/',0,NULL), (10267,'2fb6a1b7e2165b52b7e2c5518db13bcf','','','0','','',0,'','','弱冠而立_','https://wx.qlogo.cn/mmopen/vi_32/ajNVdqHZLLBb60HEtcav8UFWGiaRlcayWt4hu8B7o66v94icnlOqtTenuodGKcBHcEkrQhfR2KVFQoQOQpElml3A/132',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'routine',0,0,0,'中国,陕西,西安',0,'','2020-08-12 22:02:44','2020-08-12 22:02:44',NULL,NULL,'/0/',0,NULL), (10268,'8491671d306643ecf94a6a500b7e798b','','','0','','',0,'','','哎呦不错哦','',NULL,'','',0.00,0.00,0.00,0,1,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,西安',0,'','2020-08-13 00:31:43','2020-08-13 00:31:43',NULL,NULL,'/0/',0,NULL), (10269,'b7fafb33c76e7937f6bef85790cae00d','','','0','','',0,'','','低俗小说','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,西安',0,'','2020-08-13 09:33:55','2020-08-13 09:33:55',NULL,NULL,'/0/',0,NULL), (10270,'f3025c982d01234b9fdcfb14dfa32d22','','','0','','',0,'','','い独霸天下う','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,西安',0,'','2020-08-13 09:34:27','2020-08-13 09:34:27',NULL,NULL,'/0/',0,NULL), (10271,'f3fbca5425faa106b2bc138c40af02be','','','0','','',0,'','','༄许のོ࿆༘荣耀࿐','',NULL,'','',0.00,0.00,0.00,0,1,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,安康',0,'','2020-08-13 09:34:29','2020-08-13 09:34:29',NULL,NULL,'/0/',0,NULL), (10272,'29690404137cae5a4677e9f5fb51992b','','','0','','',0,'','','Mr.Deng','',NULL,'','',0.12,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,西安',0,'','2020-08-13 09:34:41','2020-08-13 12:09:56',NULL,NULL,'/0/',0,NULL), (10273,'9942061424cb59931f20bdb4c711a436','','','0','','',0,'','','Desire','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,安康',0,'','2020-08-13 09:35:11','2020-08-13 09:35:11',NULL,NULL,'/0/',0,NULL), (10274,'96a8aba9c0f19e53aa5e41957f68ab76','','','0','','',0,',2,3,',',2,3,','徐斗明','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,西安',0,'','2020-08-13 09:38:01','2020-08-13 09:38:01',NULL,NULL,'/0/',0,NULL), (10275,'1a67cb5763f5b954c16a1639dca428da','','啦啦啦','0','','',0,',2,3,','0,2,3,0','刘松林','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,咸阳',0,'','2020-08-13 09:45:13','2020-08-13 11:19:24',NULL,NULL,'/0/',0,NULL), (10276,'43e7e16149695495e0694831a4eb9a53','','啦啦啦1','0','','',0,'0','0','弱冠而立_','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,陕西,西安',0,'','2020-08-13 11:19:08','2020-08-13 11:22:09',NULL,NULL,'/0/',0,NULL), (10277,'d8fad6f58bafcec60ff2ccc5cbb284d3','','','0','','',0,'','','Amy','',NULL,'','',0.00,0.00,0.00,0,0,1,0,0,NULL,'wechat',0,0,0,'中国,上海,浦东新区',0,'','2020-08-13 11:31:31','2020-08-13 11:31:31',NULL,NULL,'/0/',0,NULL), (10278,'15209189276','evMli4fdHTG6pdHEkpgFxA==','','0','','',0,'3','4','212480117ccd','http:\\/\\/kaifa.crmeb.net\\/uploads\\/attach\\/2019\\/08\\/20190807\\/723adbdd4e49a0f9394dfc700ab5dba3.png','15209189276','1.80.113.128','1.80.113.128',0.00,0.00,0.00,0,1,1,17,0,NULL,'h5',1,0,0,'',0,'','2020-08-13 11:42:49','2020-08-13 12:16:52',NULL,NULL,'/0/',0,NULL); /*!40000 ALTER TABLE `eb_user` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_user_address # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_user_address`; CREATE TABLE `eb_user_address` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户地址id', `uid` int(10) unsigned NOT NULL COMMENT '用户id', `real_name` varchar(32) NOT NULL DEFAULT '' COMMENT '收货人姓名', `phone` varchar(16) NOT NULL DEFAULT '' COMMENT '收货人电话', `province` varchar(64) NOT NULL DEFAULT '' COMMENT '收货人所在省', `city` varchar(64) NOT NULL DEFAULT '' COMMENT '收货人所在市', `city_id` int(11) NOT NULL DEFAULT '0' COMMENT '城市id', `district` varchar(64) NOT NULL DEFAULT '' COMMENT '收货人所在区', `detail` varchar(256) NOT NULL DEFAULT '' COMMENT '收货人详细地址', `post_code` int(10) NOT NULL DEFAULT '0' COMMENT '邮编', `longitude` varchar(16) NOT NULL DEFAULT '0' COMMENT '经度', `latitude` varchar(16) NOT NULL DEFAULT '0' COMMENT '纬度', `is_default` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否默认', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `is_default` (`is_default`) USING BTREE, KEY `is_del` (`is_del`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户地址表'; LOCK TABLES `eb_user_address` WRITE; /*!40000 ALTER TABLE `eb_user_address` DISABLE KEYS */; INSERT INTO `eb_user_address` (`id`, `uid`, `real_name`, `phone`, `province`, `city`, `city_id`, `district`, `detail`, `post_code`, `longitude`, `latitude`, `is_default`, `is_del`, `create_time`, `update_time`) VALUES (1,9623,'天津市','18991352728','天津','1',2,'天津市天津市','天津市',0,'0','0',0,1,'2020-04-30 12:24:26','2020-05-26 16:00:10'), (2,9624,'张先生','18991352728','辽宁省','沈阳市',115225,'市辖区','北京市北京市北京市',0,'0','0',0,1,'2020-04-30 12:24:49','2020-08-10 18:50:31'), (3,9624,'mm','15236325895','天津市12','天津市',7363,'和平区','阿萨斯',0,'0','0',0,1,'2020-07-23 19:40:40','2020-08-10 18:50:34'), (4,9624,'mm','15236252154','天津市122','天津市',7363,'和平区','78787',0,'0','0',0,1,'2020-07-23 19:46:21','2020-07-23 20:06:32'), (5,9624,'马敏娟','18596587854','辽宁省','沈阳市',115225,'市辖区','阿萨斯',0,'0','0',0,1,'2020-07-23 19:48:14','2020-08-10 18:50:34'), (6,9624,'娜娜','15263625958','天津市122','天津市',7363,'和平区','阿萨斯',0,'0','0',0,1,'2020-07-23 19:50:01','2020-08-10 18:50:34'), (7,9624,'是的是的','15263252152','天津市122','天津市',7363,'和平区','收到',0,'0','0',0,1,'2020-07-23 19:53:53','2020-08-10 18:50:35'), (8,9624,'是的是的','15263252152','天津市122','天津市',7363,'和平区','收到',0,'0','0',0,1,'2020-07-23 19:57:11','2020-08-10 22:36:56'), (9,9624,'阿萨斯','15896585487','天津市122','天津市',7363,'和平区','AAS',0,'0','0',0,1,'2020-07-23 20:06:52','2020-08-10 18:50:35'), (15,9624,'张三','020-81167888','广东省','广州市',0,'海珠区','新港中路397号',0,'0','0',1,1,'2020-08-10 18:26:20','2020-08-10 18:50:35'), (16,9641,'张三','020-81167888','广东省','广州市',0,'海珠区','新港中路397号',0,'0','0',0,0,'2020-08-10 18:26:27','2020-08-12 15:01:32'), (17,10255,'收到','15263262548','天津市122','天津市',7363,'和平区','是的是的',0,'0','0',1,0,'2020-08-10 22:38:20','2020-08-11 20:49:40'), (18,9624,'ttt','18888888888','天津市122','天津市',7363,'和平区','9624的收货地址',0,'0','0',1,1,'2020-08-12 14:31:28','2020-08-13 11:58:00'), (19,9624,'tt2','18888888888','天津市122','天津市',7363,'和平区','测试2',0,'0','0',0,1,'2020-08-12 14:34:18','2020-08-13 11:57:58'), (20,9641,'来测试一个','18888888888','天津市122','天津市',7363,'和平区','休息休息',0,'0','0',1,0,'2020-08-12 15:01:28','2020-08-12 23:13:29'), (21,10261,'mmj','18888888888','河北省','石家庄市',13268,'市辖区','你来啊',0,'0','0',0,0,'2020-08-12 15:55:17','2020-08-13 12:26:56'), (22,10260,'张三','020-81167888','广东省','广州市',0,'海珠区','新港中路397号',0,'0','0',1,0,'2020-08-12 16:20:59','2020-08-12 23:30:46'), (23,9643,' 邓鹏飞','13720673941','陕西省','西安市',0,'市辖区','大明宫万达',0,'0','0',1,1,'2020-08-12 16:25:43','2020-08-12 16:25:52'), (24,9643,'邓鹏飞','13720673941','陕西省','西安市',646579,'市辖区','大明宫万达',0,'0','0',1,0,'2020-08-12 16:26:23','2020-08-12 16:31:14'), (25,9643,'邓鹏飞+','15209189276','天津市122','天津市',0,'和平区','按时的',0,'0','0',0,0,'2020-08-12 16:29:31','2020-08-12 16:31:14'), (26,10254,'张三','18991352728','天津市122','天津市',7363,'和平区','going您',0,'0','0',1,0,'2020-08-12 20:24:29','2020-08-12 20:24:29'), (27,10275,'刘松林','18161705878','陕西省','咸阳市',0,'秦都区','1107',0,'0','0',1,0,'2020-08-13 09:45:38','2020-08-13 09:45:38'), (28,9624,'阿萨斯','18596585251','上海','天津市',7363,'和平区','阿萨斯',0,'0','0',1,0,'2020-08-13 11:58:36','2020-08-13 15:10:31'), (29,10261,'秘密','15236521542','陕西省','西安市',0,'未央区','后卫寨',0,'0','0',0,0,'2020-08-13 12:26:56','2020-08-13 12:28:19'), (30,10261,'秘密','15236521542','陕西省','西安市',0,'未央区','后卫寨',0,'0','0',0,0,'2020-08-13 12:28:19','2020-08-13 14:34:37'), (31,10276,'郑路','15109234132','陕西省','西安市',0,'未央区','世纪大道启航时代广场A座',0,'0','0',1,0,'2020-08-13 14:24:49','2020-08-13 14:24:49'), (32,10277,'严测试','18192945061','省','市',0,'区','启航时代',0,'0','0',1,0,'2020-08-13 14:25:32','2020-08-13 14:25:32'), (33,10261,'摸摸摸摸哦哦浓浓的哦哦冷可乐了酷','11111111111','湖北省','武汉市',0,'江汉区','湖北省武汉市',0,'0','0',1,0,'2020-08-13 14:34:37','2020-08-13 14:34:37'); /*!40000 ALTER TABLE `eb_user_address` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_user_bill # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_user_bill`; CREATE TABLE `eb_user_bill` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户账单id', `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '用户uid', `link_id` varchar(32) NOT NULL DEFAULT '0' COMMENT '关联id', `pm` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0 = 支出 1 = 获得', `title` varchar(64) NOT NULL DEFAULT '' COMMENT '账单标题', `category` varchar(64) NOT NULL DEFAULT '' COMMENT '明细种类', `type` varchar(64) NOT NULL DEFAULT '' COMMENT '明细类型', `number` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '明细数字', `balance` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '剩余', `mark` varchar(512) NOT NULL DEFAULT '' COMMENT '备注', `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0 = 带确定 1 = 有效 -1 = 无效', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `openid` (`uid`) USING BTREE, KEY `status` (`status`) USING BTREE, KEY `add_time` (`create_time`) USING BTREE, KEY `pm` (`pm`) USING BTREE, KEY `type` (`category`,`type`,`link_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户账单表'; LOCK TABLES `eb_user_bill` WRITE; /*!40000 ALTER TABLE `eb_user_bill` DISABLE KEYS */; INSERT INTO `eb_user_bill` (`id`, `uid`, `link_id`, `pm`, `title`, `category`, `type`, `number`, `balance`, `mark`, `status`, `create_time`, `update_time`) VALUES (1,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (4,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (5,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (10,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (11,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (12,9624,'629',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (13,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (14,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (15,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (16,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (17,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (20,9624,'476',1,'购买商品赠送积分','integral','gain',1999.00,0.00,'购买商品赠送1999积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (21,9624,'369',1,'购买商品赠送积分','integral','gain',249.00,1999.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (22,9624,'68',1,'购买商品赠送积分','integral','gain',1699.00,2248.00,'购买商品赠送1699积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (23,9624,'0',1,'签到奖励','integral','sign',10.00,3947.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (24,9624,'634',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (25,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (26,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (27,9624,'635',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (28,9624,'0',1,'签到奖励','integral','sign',20.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (29,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,10000.00,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (30,9624,'636',0,'购买商品','now_money','pay_product',2999.00,10000.00,'余额支付2999元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (31,9624,'637',0,'购买商品','now_money','pay_product',2999.00,7001.00,'余额支付2999元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (32,9624,'637',1,'获得推广佣金','now_money','brokerage',2399.20,2399.20,'全成功消费2999元,奖励推广佣金2399.2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (33,9624,'636',1,'获得推广佣金','now_money','brokerage',2399.20,2399.20,'全成功消费2999元,奖励推广佣金2399.2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (34,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (35,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (36,9624,'1',0,'余额提现','now_money','extract',1000.00,1399.20,'使用银联卡62155645654863588436808提现1000元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (37,9624,'2',0,'余额提现','now_money','extract',1000.00,399.20,'使用银联卡62155645654863588436808提现1000元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (38,9624,'0',0,'用户佣金转入余额','now_money','recharge',5.00,0.00,'成功转入余额5元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (39,9624,'0',0,'用户佣金转入余额','now_money','recharge',4.00,5.00,'成功转入余额4元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (40,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (41,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (42,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (43,9624,'0',1,'签到奖励','integral','sign',20.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (44,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (45,9624,'645',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (46,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (47,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (48,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (49,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (50,9624,'0',0,'用户佣金转入余额','now_money','recharge',10.00,9.00,'成功转入余额10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (51,9624,'0',0,'用户佣金转入余额','now_money','recharge',50.00,19.00,'成功转入余额50元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (52,9624,'0',0,'用户佣金转入余额','now_money','recharge',30.00,69.00,'成功转入余额30元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (53,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (54,9624,'658',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (55,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (56,9624,'10',1,'用户余额充值','now_money','recharge',0.10,0.00,'成功充值余额0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (57,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (58,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (59,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (60,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (61,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (62,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (63,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (64,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (65,9624,'662',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (66,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,10099.00,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (67,9624,'667',0,'购买商品','now_money','pay_product',249.00,10099.00,'余额支付249元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (68,9624,'667',1,'商品退款','now_money','pay_product_refund',249.00,10099.00,'订单退款到余额249元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (69,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (71,9624,'4f45671655f2d1090277d0c65e25c048',0,'积分抵扣','integral','deduction',0.00,10.00,'购买商品使用-7001积分抵扣-7001元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (72,9624,'668',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (73,9624,'669',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (74,9624,'673',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (75,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (76,9624,'676',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (77,9624,'677',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (78,9624,'0',1,'签到奖励','integral','sign',20.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (79,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (80,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (81,9624,'681',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (82,9624,'682',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (83,9624,'683',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (84,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (85,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (86,9624,'0',1,'签到奖励','integral','sign',10.00,30.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (87,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (88,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (89,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (90,9624,'688',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (91,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (92,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (93,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (94,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (95,9624,'3',0,'余额提现','now_money','extract',102.00,198.20,'使用微信提现102元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (96,9624,'4',0,'余额提现','now_money','extract',101.00,97.20,'使用微信提现101元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (97,9624,'690',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (98,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (99,9624,'2',1,'系统增加余额','now_money','system_add',1000.00,1000.00,'系统增加了1000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (100,9624,'691',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (101,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (102,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (103,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (104,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (105,9624,'694',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (106,9624,'696',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (107,9624,'698',0,'购买商品','now_money','pay_product',249.00,10099.00,'余额支付249元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (108,9624,'698',1,'购买商品赠送积分','integral','gain',249.00,10.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (109,9624,'699',0,'购买商品','now_money','pay_product',249.00,9850.00,'余额支付249元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (110,9624,'699',1,'购买商品赠送积分','integral','gain',249.00,259.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (111,9624,'700',0,'购买商品','now_money','pay_product',249.00,9601.00,'余额支付249元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (112,9624,'700',1,'购买商品赠送积分','integral','gain',249.00,508.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (113,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (114,9624,'17',1,'用户余额充值','now_money','recharge',0.01,0.00,'成功充值余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (115,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (116,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (117,9624,'705',0,'购买商品','now_money','pay_product',249.00,9352.00,'余额支付249元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (118,9624,'705',1,'购买商品赠送积分','integral','gain',249.00,757.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (119,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (120,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (121,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (122,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (123,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (124,9624,'708',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (125,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (126,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (127,9624,'716',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (128,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (129,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (130,9624,'22',1,'用户余额充值','now_money','recharge',0.10,0.00,'成功充值余额0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (131,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (136,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (137,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (138,9624,'727',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (139,9624,'728',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (140,9624,'0',1,'签到奖励','integral','sign',10.00,7011.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (141,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (142,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (143,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (144,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (145,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (152,9624,'c1fab98017c4815c988d8534c3827b1b',0,'积分抵扣','integral','deduction',0.00,10.00,'购买商品使用-9900积分抵扣-9900元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (153,9624,'737',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (154,9624,'739',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (155,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (156,9624,'741',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (157,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (158,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (159,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (160,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (161,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (162,9624,'24',1,'用户余额充值','now_money','recharge',0.10,9103.00,'成功充值余额0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (163,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (164,9624,'751',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (165,9624,'752',0,'购买商品','now_money','pay_product',0.01,9103.10,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (166,9624,'753',0,'购买商品','now_money','pay_product',0.02,9103.09,'余额支付0.02元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (167,9624,'754',0,'购买商品','now_money','pay_product',0.02,9103.07,'余额支付0.02元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (168,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (169,9624,'757',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (170,9624,'1',1,'系统增加余额','now_money','system_add',999999.99,999999.99,'系统增加了1000000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (171,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (174,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (175,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (176,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (177,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (180,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (181,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (184,9624,'771',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (185,9624,'772',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (186,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (188,9624,'f044435f40bd99a56ab038c638859b2f',0,'积分抵扣','integral','deduction',2999.00,7021.00,'购买商品使用2999积分抵扣2999元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (189,9624,'775',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (190,9624,'777',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (191,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (194,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (195,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (196,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (197,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (198,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (199,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (200,9624,'754',1,'购买商品赠送积分','integral','gain',1999.00,1006.00,'购买商品赠送1999积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (201,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (202,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (203,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (206,9624,'79ae7d7225303d3d1f3976ae183d5d49',0,'积分抵扣','integral','deduction',10.00,10.00,'购买商品使用10积分抵扣10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (207,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (208,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (212,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-09-16 09:45:28:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (213,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (214,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (215,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (216,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (217,9624,'33',1,'用户余额充值','now_money','recharge',0.10,0.00,'成功充值余额0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (218,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (219,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (222,9624,'806',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (223,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (224,9624,'812',1,'购买商品赠送积分','integral','gain',249.00,10.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (225,9624,'813',1,'购买商品赠送积分','integral','gain',249.00,259.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (226,9624,'35',1,'用户余额充值','now_money','recharge',0.01,0.00,'成功充值余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (227,9624,'1',1,'系统增加余额','now_money','system_add',999999.99,999999.99,'系统增加了1000000000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (228,9624,'817',0,'购买商品','now_money','pay_product',2849.15,999999.99,'余额支付2849.15元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (229,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (230,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (231,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (235,9624,'823',0,'购买商品','now_money','pay_product',3330.00,999999.99,'余额支付3330元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (236,9624,'824',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (237,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (238,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (239,9624,'39',1,'用户余额充值','now_money','recharge',0.10,0.00,'成功充值余额0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (240,9624,'842',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (241,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (242,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (243,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (244,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (245,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (246,9624,'850',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (247,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (248,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (249,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (252,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (253,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (254,9624,'867',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (255,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (256,9624,'877',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (257,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (258,9624,'0',1,'签到奖励','integral','sign',20.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (259,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (260,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (261,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (263,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (265,9624,'998cf44a6a3bb44af86e7ea7dfce4300',0,'积分抵扣','integral','deduction',0.10,20.00,'购买商品使用0.1积分抵扣0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (266,9624,'880',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (267,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (271,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (272,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (273,9624,'885',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (274,9624,'886',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (275,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (276,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (277,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (278,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (279,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (280,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (281,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (282,9624,'905',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (283,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (284,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (285,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (286,9624,'911',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (287,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (288,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (289,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (290,9624,'913',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (291,9624,'914',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (292,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (293,9624,'918',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (294,9624,'922',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (295,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (296,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (297,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (298,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (299,9624,'928',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (300,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (301,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (302,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (303,9624,'51',1,'用户余额充值','now_money','recharge',0.01,0.00,'成功充值余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (304,9624,'933',0,'购买商品','now_money','pay_product',0.01,0.01,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (305,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (306,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (310,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (311,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (312,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (313,9624,'940',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (314,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (320,9624,'944',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (321,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (322,9624,'947',0,'购买商品','now_money','pay_product',0.01,997150.84,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (323,9624,'947',1,'商品退款','now_money','pay_product_refund',0.01,997150.84,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (324,9624,'948',0,'购买商品','now_money','pay_product',0.01,997150.84,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (325,9624,'949',0,'购买商品','now_money','pay_product',0.01,996669.99,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (326,9624,'949',1,'商品退款','now_money','pay_product_refund',0.01,996669.99,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (327,9624,'950',0,'购买商品','now_money','pay_product',0.01,996669.99,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (328,9624,'948',1,'商品退款','now_money','pay_product_refund',0.01,997150.84,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (329,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (330,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (331,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (332,9624,'754',1,'商品退款','now_money','pay_product_refund',0.02,996670.00,'订单退款到余额0.02元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (333,9624,'957',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (334,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (336,9624,'c464c25ce52e2e70487ca6a81432515f',0,'积分抵扣','integral','deduction',0.10,20.00,'购买商品使用0.1积分抵扣0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (337,9624,'963',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (339,9624,'7bc3a82bca63c76b81e857395e2f3be6',0,'积分抵扣','integral','deduction',0.10,19.90,'购买商品使用0.1积分抵扣0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (340,9624,'965',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (341,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (344,9624,'a745dc9aae62b33774f9282fbe11f79a',0,'积分抵扣','integral','deduction',0.10,10.00,'购买商品使用0.1积分抵扣0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (345,9624,'966',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (346,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (347,9624,'57',1,'用户余额充值','now_money','recharge',0.20,0.00,'成功充值余额0.2元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (348,9624,'0',1,'签到奖励','integral','sign',10.00,19.80,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (349,9624,'969',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (350,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (351,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (352,9624,'0',1,'签到奖励','integral','sign',20.00,29.80,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (353,9624,'970',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (354,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (356,9624,'8363a30a6f31031faa7d4b8861dd1736',0,'积分抵扣','integral','deduction',0.10,10.00,'购买商品使用0.1积分抵扣0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (357,9624,'972',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (358,9624,'975',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (359,9624,'976',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (360,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (362,9624,'a5503559703ab3a489ac386961f72ffa',0,'积分抵扣','integral','deduction',0.00,10.00,'购买商品使用0积分抵扣0元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (363,9624,'979',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (364,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (365,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (369,9624,'981',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (370,9624,'985',0,'购买商品','now_money','pay_product',0.10,0.20,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (371,9624,'986',0,'购买商品','now_money','pay_product',0.10,0.10,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (372,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (373,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (374,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (375,9624,'994',0,'购买商品','now_money','pay_product',0.01,996670.00,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (376,9624,'995',0,'购买商品','now_money','pay_product',0.01,997150.84,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (377,9624,'996',0,'购买商品','now_money','pay_product',0.01,996669.99,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (378,9624,'997',0,'购买商品','now_money','pay_product',0.01,996669.98,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (379,9624,'998',0,'购买商品','now_money','pay_product',0.01,996669.97,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (380,9624,'999',0,'购买商品','now_money','pay_product',0.01,996669.96,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (381,9624,'999',1,'商品退款','now_money','pay_product_refund',0.01,996669.96,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (382,9624,'998',1,'商品退款','now_money','pay_product_refund',0.01,996669.97,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (383,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (385,9624,'138ec137b1091aa5551b648549494ab0',0,'积分抵扣','integral','deduction',3957.00,3957.00,'购买商品使用3957积分抵扣3957元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (386,9624,'138ec137b1091aa5551b648549494ab0',1,'积分回退','integral','deduction',3957.00,3957.00,'购买商品失败,回退积分3957',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (388,9624,'4a257be43c0e088481d3210d86351968',0,'积分抵扣','integral','deduction',2222.00,3957.00,'购买商品使用2222积分抵扣2222元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (389,9624,'1004',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (390,9624,'0',1,'签到奖励','integral','sign',20.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (391,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (392,9624,'1010',1,'购买商品赠送积分','integral','gain',249.00,0.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (393,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (394,9624,'1011',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (395,9624,'1012',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (396,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (397,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (398,9624,'1017',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (399,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (400,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (401,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (402,9624,'1027',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (403,9624,'1028',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (404,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (405,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (406,9624,'1038',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (407,9624,'1042',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (408,9624,'1044',0,'购买商品','now_money','pay_product',0.10,996669.97,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (409,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (410,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (411,9624,'1046',0,'购买商品','now_money','pay_product',0.10,996669.87,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (412,9624,'1',1,'系统增加余额','now_money','system_add',5000.00,5000.00,'系统增加了5000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (413,9624,'1049',0,'购买商品','now_money','pay_product',0.10,5000.00,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (414,9624,'1048',0,'购买商品','now_money','pay_product',0.10,4999.90,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (415,9624,'1047',0,'购买商品','now_money','pay_product',0.10,4999.80,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (416,9624,'1050',0,'购买商品','now_money','pay_product',1099.89,4999.70,'余额支付1099.89元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (417,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-12 01:36:03:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (421,9624,'2f8af66147a86e0c70a994129bc89460',0,'积分抵扣','integral','deduction',0.10,10.00,'购买商品使用0.1积分抵扣0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (422,9624,'1053',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (423,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (424,9624,'0',1,'签到奖励','integral','sign',10.00,249.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (425,9624,'1054',0,'购买商品','now_money','pay_product',0.01,3899.81,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (426,9624,'1054',1,'商品退款','now_money','pay_product_refund',0.01,3899.81,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (427,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (428,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (429,9624,'0',1,'签到奖励','integral','sign',10.00,3005.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (430,9624,'1058',0,'购买商品','now_money','pay_product',0.10,996669.77,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (431,9624,'1058',1,'购买商品赠送积分','integral','gain',249.00,3015.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (432,9624,'1059',0,'购买商品','now_money','pay_product',0.10,996669.67,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (433,9624,'1059',1,'购买商品赠送积分','integral','gain',249.00,3264.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (434,9624,'1062',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (435,9624,'1065',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (436,9624,'0',1,'签到奖励','integral','sign',10.00,49.80,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (437,9624,'0',1,'签到奖励','integral','sign',10.00,19.90,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (438,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (439,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (440,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-13 19:53:44:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (441,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (442,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (443,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-14 11:08:38:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (444,9624,'0',1,'签到奖励','integral','sign',20.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (445,9624,'0',1,'签到奖励','integral','sign',20.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (446,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (447,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (448,9624,'1082',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (449,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (450,9624,'1088',0,'购买商品','now_money','pay_product',0.10,0.10,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (451,9624,'1095',0,'购买商品','now_money','pay_product',0.10,997150.83,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (452,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (453,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (454,9624,'1101',0,'购买商品','now_money','pay_product',0.10,997150.73,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (455,9624,'0',1,'签到奖励','integral','sign',10.00,30.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (456,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (457,9624,'1107',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (458,9624,'1108',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (459,9624,'1111',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (460,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (461,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (462,9624,'1114',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (463,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (464,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (465,9624,'1119',0,'购买商品','now_money','pay_product',100.00,996669.57,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (466,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (467,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (468,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (470,9624,'152e8fb4100d787f0e79f4643e1e77a3',0,'积分抵扣','integral','deduction',0.20,10.00,'购买商品使用0.2积分抵扣0.2元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (471,9624,'1120',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (472,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (473,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (474,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (475,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-19 03:36:14:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (476,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (477,9624,'1129',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (478,9624,'0',1,'签到奖励','integral','sign',20.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (481,9624,'1131',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (482,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (483,9624,'1133',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (484,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (487,9624,'1414aa3fbac272b3f1018bb692712dc9',0,'积分抵扣','integral','deduction',0.10,9.80,'购买商品使用0.1积分抵扣0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (488,9624,'1138',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (490,9624,'1c408209f87c7c1da5b1ae57ea1a7604',0,'积分抵扣','integral','deduction',0.10,30.00,'购买商品使用0.1积分抵扣0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (491,9624,'1139',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (494,9624,'c9f73e2c79e0f691f28cc9bf2b9e9da6',0,'积分抵扣','integral','deduction',29.90,29.90,'购买商品使用29.9积分抵扣29.9元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (495,9624,'1142',0,'购买商品','now_money','pay_product',0.10,996569.57,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (496,9624,'1143',0,'购买商品','now_money','pay_product',0.10,996569.47,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (497,9624,'1144',0,'购买商品','now_money','pay_product',0.10,996569.37,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (498,9624,'1145',0,'购买商品','now_money','pay_product',0.10,996569.27,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (499,9624,'1146',0,'购买商品','now_money','pay_product',96.00,996569.17,'余额支付96元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (500,9624,'1147',0,'购买商品','now_money','pay_product',99.00,996473.17,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (501,9624,'1154',0,'购买商品','now_money','pay_product',0.10,996374.17,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (502,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (503,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (504,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (505,9624,'76',1,'用户余额充值','now_money','recharge',0.01,0.00,'成功充值余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (506,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (507,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (508,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (509,9624,'1164',0,'购买商品','now_money','pay_product',10.00,996374.07,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (510,9624,'1165',0,'购买商品','now_money','pay_product',10.00,997150.63,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (511,9624,'1166',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (512,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (513,9624,'1169',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (514,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (516,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (518,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (519,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (520,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (521,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (522,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (523,9624,'1175',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (524,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (525,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-22 21:55:24:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (526,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (527,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (528,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (529,9624,'1185',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (530,9624,'1186',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (531,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (532,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (533,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (534,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (537,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (538,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (539,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (540,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (541,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (542,9624,'0',1,'签到奖励','integral','sign',20.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (543,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (544,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (545,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (546,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (547,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (549,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (550,9624,'1207',0,'购买商品','now_money','pay_product',0.10,996364.07,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (551,9624,'1208',0,'购买商品','now_money','pay_product',99.00,996363.97,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (552,9624,'1209',0,'购买商品','now_money','pay_product',99.00,996264.97,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (553,9624,'1210',0,'购买商品','now_money','pay_product',0.10,996165.97,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (554,9624,'1211',0,'购买商品','now_money','pay_product',99.00,996165.87,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (555,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (556,9624,'1217',1,'购买商品赠送积分','integral','gain',249.00,0.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (557,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (558,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (559,9624,'1220',0,'购买商品','now_money','pay_product',0.01,996066.87,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (560,9624,'1220',1,'购买商品赠送积分','integral','gain',249.00,3513.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (561,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (562,9624,'1100',1,'购买商品赠送积分','integral','gain',249.00,20.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (563,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (566,9624,'1230',0,'购买商品','now_money','pay_product',50.00,997140.63,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (567,9624,'1231',0,'购买商品','now_money','pay_product',5.00,997090.63,'余额支付5元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (568,9624,'1232',0,'购买商品','now_money','pay_product',5.00,996066.86,'余额支付5元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (569,9624,'1234',0,'购买商品','now_money','pay_product',0.10,996061.86,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (577,9624,'da20b90226d2ef42be51c81ca8956cc4',0,'积分抵扣','integral','deduction',0.00,20.00,'购买商品使用-0.9积分抵扣-0.9元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (578,9624,'1237',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (579,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (580,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-27 02:48:17:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (581,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (582,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-27 19:34:28:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (583,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (584,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-28 06:12:31:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (585,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-28 06:34:09:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (587,9624,'d7ad3e406c7f8f8bca6767feae5c8a9b',0,'积分抵扣','integral','deduction',0.10,249.00,'购买商品使用0.1积分抵扣0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (588,9624,'1244',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (589,9624,'1244',1,'购买商品赠送积分','integral','gain',249.00,248.90,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (591,9624,'5a0a38706c3619d6b44a6ed9ec2581c2',0,'积分抵扣','integral','deduction',0.10,497.90,'购买商品使用0.1积分抵扣0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (592,9624,'1246',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (593,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-28 09:11:54:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (594,9624,'1246',1,'商品退积分','integral','pay_product_integral_back',0.10,497.90,'订单退积分0.1积分到用户积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (596,9624,'1',1,'系统增加余额','now_money','system_add',100.00,100.00,'系统增加了100余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (597,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,10000.00,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (598,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,10100.00,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (599,9624,'1249',0,'购买商品','now_money','pay_product',100.00,10100.00,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (600,9624,'1249',1,'商品退款','now_money','pay_product_refund',100.00,10100.00,'订单退款到余额100元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (601,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (602,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-28 14:26:31:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (603,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-28 14:43:28:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (604,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-28 15:18:34:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (605,9624,'21936f3ea64da8d4d73124cec97fa8d2',0,'积分抵扣','integral','deduction',100.00,3762.00,'购买商品使用100积分抵扣100元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (606,9624,'1257',0,'购买商品','now_money','pay_product',0.00,996061.76,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (607,9624,'1257',1,'商品退积分','integral','pay_product_integral_back',100.00,3762.00,'订单退积分100积分到用户积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (608,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-28 17:14:21:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (609,9624,'1258',0,'购买商品','now_money','pay_product',1111.00,996061.76,'余额支付1111元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (610,9624,'13f5d1f26865a8fc33dabbe211c97b31',0,'积分抵扣','integral','deduction',1000.00,3762.00,'购买商品使用1000积分抵扣1000元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (611,9624,'1259',0,'购买商品','now_money','pay_product',0.00,994950.76,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (612,9624,'1261',0,'购买商品','now_money','pay_product',5.00,10100.00,'余额支付5元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (613,9624,'1262',0,'购买商品','now_money','pay_product',0.10,10095.00,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (614,9624,'1263',0,'购买商品','now_money','pay_product',0.10,10094.90,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (615,9624,'1264',0,'购买商品','now_money','pay_product',100.00,10094.80,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (616,9624,'1265',0,'购买商品','now_money','pay_product',0.10,9994.80,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (626,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (627,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (628,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-29 12:08:12:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (629,9624,'1271',0,'购买商品','now_money','pay_product',0.10,9994.70,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (630,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (631,9624,'1258',0,'获得推广佣金','now_money','brokerage',800.00,800.00,'等风来,随风去成功消费1111元,奖励推广佣金800',1,'2020-05-14 11:18:45','2020-07-30 21:40:02'), (632,9624,'1258',0,'获得推广佣金','now_money','brokerage',600.00,600.00,'二级推广人等风来,随风去成功消费1111元,奖励推广佣金600',1,'2020-05-14 11:18:45','2020-07-30 21:40:03'), (633,9624,'1234',1,'购买商品赠送积分','integral','gain',249.00,2762.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (634,9624,'1154',1,'购买商品赠送积分','integral','gain',249.00,3011.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (635,9624,'1150',1,'购买商品赠送积分','integral','gain',249.00,3260.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (636,9624,'1147',1,'购买商品赠送积分','integral','gain',10.00,3509.00,'购买商品赠送10积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (637,9624,'1146',1,'购买商品赠送积分','integral','gain',10.00,3519.00,'购买商品赠送10积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (638,9624,'1145',1,'购买商品赠送积分','integral','gain',249.00,3529.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (639,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-29 16:10:32:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (640,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (642,9624,'e30f6d729e272c0cbe7a2ab8d6acb766',0,'积分抵扣','integral','deduction',2999.00,3778.00,'购买商品使用2999积分抵扣2999元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (643,9624,'1275',0,'购买商品','now_money','pay_product',0.00,994950.76,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (644,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-29 17:18:22:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (645,9624,'1',1,'系统增加积分','integral','system_add',5000.00,5000.00,'系统增加了5000积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (647,9624,'57c2dd8dbb5ae8e77ce7a49cf3f08823',0,'积分抵扣','integral','deduction',100.00,5000.00,'购买商品使用100积分抵扣100元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (648,9624,'1276',0,'购买商品','now_money','pay_product',0.00,9994.60,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (649,9624,'1276',1,'商品退积分','integral','pay_product_integral_back',100.00,5000.00,'订单退积分100积分到用户积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (650,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-29 17:41:57:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (651,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-29 17:50:20:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (652,9624,'1277',0,'购买商品','now_money','pay_product',5.00,9994.60,'余额支付5元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (653,9624,'1277',1,'商品退款','now_money','pay_product_refund',5.00,9994.60,'订单退款到余额5元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (654,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-29 18:24:53:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (655,9624,'0',1,'签到奖励','integral','sign',10.00,5000.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (656,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-29 18:30:25:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (660,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (661,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-30 08:08:34:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (663,9624,'1282',0,'购买商品','now_money','pay_product',80.00,9994.60,'余额支付80元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (664,9624,'1282',1,'购买商品赠送积分','integral','gain',100.00,5010.00,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (665,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-30 09:28:48:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (666,9624,'1283',0,'购买商品','now_money','pay_product',0.10,997085.63,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (667,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (668,9624,'0',1,'签到奖励','integral','sign',10.00,269.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (669,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-30 11:15:37:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (670,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (671,9624,'1286',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (672,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,13899.81,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (673,9624,'1287',0,'购买商品','now_money','pay_product',0.10,9914.60,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (674,9624,'1288',0,'购买商品','now_money','pay_product',0.10,9914.50,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (677,9624,'e5e22d91912fc279748d18cce8c2d7f8',0,'积分抵扣','integral','deduction',0.00,259.00,'购买商品使用-0.9积分抵扣-0.9元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (678,9624,'1289',0,'购买商品','now_money','pay_product',0.00,13899.81,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (682,9624,'82260cb578bc44a68d25e0a58b98e9d1',0,'积分抵扣','integral','deduction',259.90,259.90,'购买商品使用259.9积分抵扣259.9元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (683,9624,'1291',0,'购买商品','now_money','pay_product',2736.10,13899.81,'余额支付2736.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (684,9624,'1',1,'系统增加积分','integral','system_add',100.00,100.00,'系统增加了100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (689,9624,'fa752d5d03baa8ee3c5a4b2dff6aa0aa',0,'积分抵扣','integral','deduction',100.00,100.00,'购买商品使用100积分抵扣100元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (690,9624,'1292',0,'购买商品','now_money','pay_product',2896.00,11163.71,'余额支付2896元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (691,9624,'1292',1,'购买商品赠送积分','integral','gain',100.00,0.00,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (692,1,'1292',1,'获得推广佣金','now_money','brokerage',2316.80,3116.80,'成功消费2896元,奖励推广佣金2316.8',1,'2020-05-14 11:18:45','2020-06-22 18:32:50'), (693,9624,'1292',1,'获得推广佣金','now_money','brokerage',1737.60,2337.60,'二级推广人成功消费2896元,奖励推广佣金1737.6',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (694,9624,'5',0,'余额提现','now_money','extract',10.00,87.20,'使用支付宝提现10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (695,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-30 16:54:29:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (696,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-30 18:06:43:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (697,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-30 19:08:12:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (698,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (699,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (700,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-10-31 07:56:37:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (701,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (702,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (704,9624,'1300',0,'购买商品','now_money','pay_product',99.00,994950.76,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (705,9624,'460',1,'购买商品赠送积分','integral','gain',3998.00,3998.00,'购买商品赠送3998积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (706,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (734,9624,'1',1,'系统增加余额','now_money','system_add',10.00,9924.40,'系统增加了10余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (742,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (743,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (744,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-07 00:19:12:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (745,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-07 00:57:15:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (746,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (753,9624,'a7635f4c08a8ee7ab88c2bf39fa89d6f',0,'积分抵扣','integral','deduction',779.00,779.00,'购买商品使用779积分抵扣779元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (754,9624,'1311',0,'购买商品','now_money','pay_product',2190.01,994851.76,'余额支付2190.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (755,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (756,9624,'1314',0,'购买商品','now_money','pay_product',0.10,992661.75,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (757,9624,'1315',0,'购买商品','now_money','pay_product',0.10,992661.65,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (758,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-07 18:08:11:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (759,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (760,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (761,9624,'90',1,'用户余额充值','now_money','recharge',0.01,0.00,'成功充值余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (762,9624,'1322',0,'购买商品','now_money','pay_product',0.00,0.01,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (763,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-08 00:38:39:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (764,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-08 01:22:55:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (765,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-08 01:23:32:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (766,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-08 04:06:45:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (767,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-08 08:03:36:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (768,9624,'1320',0,'购买商品','now_money','pay_product',0.10,992661.55,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (769,9624,'1319',0,'购买商品','now_money','pay_product',0.10,992661.45,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (770,9624,'1320',1,'购买商品赠送积分','integral','gain',249.00,10.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (771,9624,'1319',1,'购买商品赠送积分','integral','gain',249.00,259.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (772,9624,'1315',1,'商品退款','now_money','pay_product_refund',0.10,992661.45,'订单退款到余额0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (773,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (774,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (775,9624,'1324',0,'购买商品','now_money','pay_product',5.00,992661.45,'余额支付5元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (776,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (777,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-08 14:38:39:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (778,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-08 15:34:39:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (779,9624,'0',1,'签到奖励','integral','sign',20.00,508.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (780,9624,'52516514f1d99a2d57b8c850f4040f3a',0,'积分抵扣','integral','deduction',528.00,528.00,'购买商品使用528积分抵扣528元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (781,9624,'1326',0,'购买商品','now_money','pay_product',2511.05,992656.45,'余额支付2511.05元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (782,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (783,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-09 03:39:11:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (784,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-09 08:51:40:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (785,9624,'0',1,'签到奖励','integral','sign',10.00,497.90,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (787,9624,'410c5c73a17db862c38aa2cfba0fbd3c',0,'积分抵扣','integral','deduction',507.90,507.90,'购买商品使用507.9积分抵扣507.9元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (788,9624,'0',1,'签到奖励','integral','sign',10.00,279.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (791,9624,'27e8a6d5915c225e4f52d7a1ff2b6715',0,'积分抵扣','integral','deduction',0.20,289.00,'购买商品使用0.2积分抵扣0.2元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (792,9624,'1332',0,'购买商品','now_money','pay_product',0.00,997085.53,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (793,9624,'1332',1,'购买商品赠送积分','integral','gain',498.00,288.80,'购买商品赠送498积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (794,9624,'1214',0,'购买商品','now_money','pay_product',10.00,9924.40,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (795,9624,'1336',0,'购买商品','now_money','pay_product',10.00,9914.40,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (796,9624,'1337',0,'购买商品','now_money','pay_product',10.00,8267.71,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (797,9624,'1',1,'系统增加余额','now_money','system_add',300.00,997385.53,'系统增加了300余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (798,9624,'1',1,'系统增加积分','integral','system_add',300.00,1086.80,'系统增加了300积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (799,9624,'1340',0,'购买商品','now_money','pay_product',0.10,997385.53,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (800,9624,'1341',0,'购买商品','now_money','pay_product',237.00,997385.43,'余额支付237元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (801,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (802,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-10 13:09:54:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (803,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (804,9624,'1343',0,'购买商品','now_money','pay_product',0.10,990145.40,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (805,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-11 17:16:28:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (806,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (807,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-11 19:10:24:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (808,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-11 19:41:45:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (809,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (810,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-11 20:21:14:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (811,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (812,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-11 22:04:19:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (813,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-11 23:54:04:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (814,9624,'1344',0,'购买商品','now_money','pay_product',0.10,997148.43,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (815,9624,'1345',0,'购买商品','now_money','pay_product',0.10,997148.33,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (816,9624,'1348',0,'购买商品','now_money','pay_product',99.00,9904.40,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (817,9624,'1349',0,'购买商品','now_money','pay_product',99.00,9805.40,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (818,9624,'1349',1,'购买商品赠送积分','integral','gain',100.00,5110.00,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (819,9624,'1349',1,'获得推广佣金','now_money','brokerage',71.20,3188.00,'徐斗明成功消费99元,奖励推广佣金71.2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (820,9624,'1349',1,'获得推广佣金','now_money','brokerage',53.40,2391.00,'二级推广人徐斗明成功消费99元,奖励推广佣金53.4',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (821,9624,'1350',0,'购买商品','now_money','pay_product',0.10,990145.30,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (822,9624,'1351',0,'购买商品','now_money','pay_product',0.10,990145.20,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (823,9624,'1353',0,'购买商品','now_money','pay_product',0.10,990145.10,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (824,9624,'1354',0,'购买商品','now_money','pay_product',0.10,990145.00,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (825,9624,'1355',0,'购买商品','now_money','pay_product',0.10,990144.90,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (826,9624,'1362',0,'购买商品','now_money','pay_product',0.10,990144.80,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (827,9624,'1365',0,'购买商品','now_money','pay_product',0.10,990144.70,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (828,9624,'1369',0,'购买商品','now_money','pay_product',0.10,990144.60,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (829,9624,'1370',0,'购买商品','now_money','pay_product',0.10,990144.50,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (830,9624,'1375',0,'购买商品','now_money','pay_product',0.10,990144.40,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (831,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (832,9624,'1377',0,'购买商品','now_money','pay_product',10.00,990144.30,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (833,9624,'0',1,'签到奖励','integral','sign',20.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (841,9624,'98b76f604e28beaa4665d4a6c9195b46',0,'积分抵扣','integral','deduction',30.00,30.00,'购买商品使用30积分抵扣30元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (842,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (843,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (844,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (845,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (846,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-14 06:02:30:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (847,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (848,9624,'1384',0,'购买商品','now_money','pay_product',10.10,1000.00,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (849,9624,'1388',0,'购买商品','now_money','pay_product',0.01,990134.30,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (850,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (851,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (852,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (853,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (854,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-14 17:24:31:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (855,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-15 00:18:46:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (857,9624,'9ae77dfe5a6fa67e5cb0dcb669da5da8',0,'积分抵扣','integral','deduction',10.00,10.00,'购买商品使用10积分抵扣10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (858,9624,'1414',0,'购买商品','now_money','pay_product',2819.05,990134.29,'余额支付2819.05元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (859,9624,'1414',1,'购买商品赠送积分','integral','gain',100.00,0.00,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (860,9624,'1414',1,'获得推广佣金','now_money','brokerage',2255.24,5443.24,'等风来,随风去成功消费2819.05元,奖励推广佣金2255.24',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (861,9624,'1414',1,'获得推广佣金','now_money','brokerage',1691.43,4082.43,'二级推广人等风来,随风去成功消费2819.05元,奖励推广佣金1691.43',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (862,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-16 12:53:41:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (863,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-16 13:52:45:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (864,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-16 15:00:26:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (865,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-16 16:15:55:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (866,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-16 16:54:37:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (867,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-17 09:00:28:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (868,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-17 13:39:20:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (869,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-17 14:54:16:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (874,9624,'1428',0,'购买商品','now_money','pay_product',0.01,987315.24,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (875,9624,'1429',0,'购买商品','now_money','pay_product',0.01,987315.23,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (882,9624,'1434',0,'购买商品','now_money','pay_product',0.01,987315.22,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (883,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (884,9624,'1436',0,'购买商品','now_money','pay_product',5.00,997148.23,'余额支付5元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (885,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (886,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (887,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (888,9624,'d7028036a1752eafa68a94c6c04ed7af',0,'积分抵扣','integral','deduction',0.01,10.00,'购买商品使用0.01积分抵扣0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (889,9624,'1440',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (890,9624,'1441',0,'购买商品','now_money','pay_product',0.01,987315.21,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (891,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (892,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (893,9624,'1454',0,'购买商品','now_money','pay_product',2969.01,8257.71,'余额支付2969.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (894,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (895,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (896,9624,'1457',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (897,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (898,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-20 14:50:36:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (899,9624,'1458',0,'购买商品','now_money','pay_product',0.01,997143.23,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (900,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (901,9624,'6',0,'余额提现','now_money','extract',20.00,67.20,'使用微信提现20元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (902,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (903,9624,'1460',0,'购买商品','now_money','pay_product',110.00,987315.20,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (904,9624,'1460',1,'商品退款','now_money','pay_product_refund',110.00,987315.20,'订单退款到余额110元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (905,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (906,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (907,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-21 13:05:22:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (908,9624,'96',1,'用户余额充值','now_money','recharge',0.01,0.00,'成功充值余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (909,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (910,9624,'7',0,'余额提现','now_money','extract',20.00,47.20,'使用微信提现20元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (913,9624,'cc7fa5925ae1d4e8aa964326b799c7eb',0,'积分抵扣','integral','deduction',0.01,20.00,'购买商品使用0.01积分抵扣0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (914,9624,'1462',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (915,9624,'1',1,'系统增加余额','now_money','system_add',99999.00,99999.00,'系统增加了99999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (916,9624,'1',1,'系统增加积分','integral','system_add',99999.00,100018.99,'系统增加了99999积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (917,9624,'1464',0,'购买商品','now_money','pay_product',0.01,99999.00,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (918,9624,'1465',0,'购买商品','now_money','pay_product',0.01,987315.20,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (919,9624,'1466',0,'购买商品','now_money','pay_product',113.00,99998.99,'余额支付113元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (920,9624,'1468',0,'购买商品','now_money','pay_product',113.00,99885.99,'余额支付113元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (921,9624,'0',1,'签到奖励','integral','sign',20.00,100018.99,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (922,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (923,9624,'0',1,'签到奖励','integral','sign',30.00,100038.99,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (924,9624,'1469',0,'购买商品','now_money','pay_product',0.01,99772.99,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (925,9624,'1468',1,'购买商品赠送积分','integral','gain',100.00,100068.99,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (926,9624,'1472',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (927,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-24 08:39:24:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (928,9624,'1474',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (929,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (930,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-24 11:42:26:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (931,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-24 12:56:13:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (932,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-24 14:19:27:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (933,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-24 14:57:25:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (934,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (935,9624,'1479',0,'购买商品','now_money','pay_product',10.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-07-29 16:13:40'), (936,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (937,9624,'1480',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (938,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (939,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-25 03:54:48:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (940,9624,'1481',0,'购买商品','now_money','pay_product',950.00,987315.19,'余额支付950元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (941,9624,'0',1,'签到奖励','integral','sign',10.00,1086.80,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (942,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (943,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-25 11:23:03:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (946,9624,'1482',0,'购买商品','now_money','pay_product',237.60,997143.22,'余额支付237.6元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (947,9624,'1482',1,'购买商品赠送积分','integral','gain',240.00,1336.80,'购买商品赠送240积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (948,9624,'1482',1,'获得推广佣金','now_money','brokerage',30.08,4112.51,'路人甲成功消费237.6元,奖励推广佣金30.08',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (949,9624,'1483',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (950,9624,'1484',0,'购买商品','now_money','pay_product',0.01,996905.62,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (951,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (952,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-25 12:53:31:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (953,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-25 12:58:23:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (954,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-25 13:00:37:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (955,9624,'0',1,'签到奖励','integral','sign',10.00,100168.99,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (956,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-25 15:47:17:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (957,9624,'0',1,'签到奖励','integral','sign',10.00,100.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (958,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (959,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (960,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-26 05:02:58:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (961,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-26 14:54:07:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (962,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-26 18:23:23:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (963,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-26 23:29:04:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (964,9624,'24def852a42ebf411f6a4d1b901105a8',0,'积分抵扣','integral','deduction',0.01,20.00,'购买商品使用0.01积分抵扣0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (965,9624,'1491',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (966,9624,'1492',0,'购买商品','now_money','pay_product',10.00,986365.19,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (970,9624,'da3c692addaa875626f10574b7f29898',0,'积分抵扣','integral','deduction',0.01,100178.99,'购买商品使用0.01积分抵扣0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (971,9624,'1495',0,'购买商品','now_money','pay_product',0.00,99772.98,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (972,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (973,9624,'1496',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (974,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (975,9624,'1499',0,'购买商品','now_money','pay_product',0.01,986355.19,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (976,9624,'1500',0,'购买商品','now_money','pay_product',10.00,986355.18,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (977,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-11-29 13:03:23:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (978,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (979,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (980,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (981,9624,'1503',0,'购买商品','now_money','pay_product',0.01,986345.18,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (982,9624,'1504',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (983,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (984,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (985,9624,'1506',0,'购买商品','now_money','pay_product',50.00,996905.61,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (986,9624,'1507',0,'购买商品','now_money','pay_product',0.01,986345.17,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (987,9624,'1508',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (988,9624,'1511',0,'购买商品','now_money','pay_product',2199.78,996855.61,'余额支付2199.78元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (989,9624,'1512',0,'购买商品','now_money','pay_product',0.01,994655.83,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (990,9624,'1513',0,'购买商品','now_money','pay_product',0.01,986345.16,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (992,9624,'747bb869abd6a1d1ce77b17ea3c50d9c',0,'积分抵扣','integral','deduction',0.01,100178.98,'购买商品使用0.01积分抵扣0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (993,9624,'1514',0,'购买商品','now_money','pay_product',0.00,99772.98,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (994,9624,'1515',0,'购买商品','now_money','pay_product',980.00,99772.98,'余额支付980元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (995,9624,'1516',0,'购买商品','now_money','pay_product',0.01,98792.98,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (997,9624,'ee8354dbe6532716eb816741cf74edfc',0,'积分抵扣','integral','deduction',235.20,100178.97,'购买商品使用235.2积分抵扣235.2元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (998,9624,'1517',0,'购买商品','now_money','pay_product',0.00,98792.97,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (999,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1000,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1001,9624,'1518',0,'购买商品','now_money','pay_product',0.00,986345.15,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1002,9624,'1519',0,'购买商品','now_money','pay_product',114.00,994655.82,'余额支付114元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1003,9624,'1520',0,'购买商品','now_money','pay_product',0.01,986345.15,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1004,9624,'1521',0,'购买商品','now_money','pay_product',0.01,986345.14,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1005,9624,'1522',0,'购买商品','now_money','pay_product',0.01,986345.13,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1006,9624,'1525',0,'购买商品','now_money','pay_product',0.01,986345.12,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1007,9624,'1526',0,'购买商品','now_money','pay_product',0.01,986345.11,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1008,9624,'1527',0,'购买商品','now_money','pay_product',0.01,986345.10,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1009,9624,'1528',0,'购买商品','now_money','pay_product',0.01,986345.09,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1010,9624,'1530',0,'购买商品','now_money','pay_product',0.01,986345.08,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1011,9624,'1533',0,'购买商品','now_money','pay_product',50.00,994541.82,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1012,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1021,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-12-04 19:41:59:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1022,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1026,9624,'d8b7e41e0f11248c4f1b0c0e74d8ac76',0,'积分抵扣','integral','deduction',10.00,10.00,'购买商品使用10积分抵扣10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1027,9624,'1539',0,'购买商品','now_money','pay_product',0.01,986345.07,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1028,9624,'1540',0,'购买商品','now_money','pay_product',0.01,986345.06,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1029,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1030,9624,'8',0,'余额提现','now_money','extract',10.00,37.20,'使用微信提现10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1031,9624,'9',0,'余额提现','now_money','extract',10.00,27.20,'使用微信提现10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1032,9624,'10',0,'余额提现','now_money','extract',10.00,17.20,'使用微信提现10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1033,9624,'11',0,'余额提现','now_money','extract',10.00,7.20,'使用微信提现10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1034,9624,'12',0,'余额提现','now_money','extract',10.00,997.20,'使用微信提现10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1035,9624,'13',0,'余额提现','now_money','extract',10.00,987.20,'使用微信提现10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1036,9624,'14',0,'余额提现','now_money','extract',10.00,977.20,'使用微信提现10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1037,9624,'15',0,'余额提现','now_money','extract',10.00,967.20,'使用微信提现10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1038,9624,'16',0,'余额提现','now_money','extract',10.00,957.20,'使用微信提现10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1039,9624,'17',0,'余额提现','now_money','extract',10.00,947.20,'使用微信提现10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1040,9624,'18',0,'余额提现','now_money','extract',10.00,937.20,'使用微信提现10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1041,9624,'19',0,'余额提现','now_money','extract',10.00,927.20,'使用微信提现10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1042,9624,'20',0,'余额提现','now_money','extract',10.00,917.20,'使用微信提现10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1043,9624,'1540',1,'商品退款','now_money','pay_product_refund',0.01,986345.06,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1044,9624,'1539',1,'商品退款','now_money','pay_product_refund',0.01,986345.07,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1045,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1046,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1047,9624,'1544',0,'购买商品','now_money','pay_product',0.01,986345.07,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1048,9624,'1544',1,'商品退款','now_money','pay_product_refund',0.01,986345.07,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1049,9624,'1545',0,'购买商品','now_money','pay_product',0.01,986345.07,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1050,9624,'1545',1,'商品退款','now_money','pay_product_refund',0.01,986345.07,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1051,9624,'1546',0,'购买商品','now_money','pay_product',0.01,986345.07,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1052,9624,'1546',1,'商品退款','now_money','pay_product_refund',0.01,986345.07,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1053,9624,'1547',0,'购买商品','now_money','pay_product',0.01,986345.07,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1054,9624,'1547',1,'商品退款','now_money','pay_product_refund',0.01,986345.07,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1055,9624,'1548',0,'购买商品','now_money','pay_product',110.00,986345.07,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1056,9624,'1548',1,'商品退款','now_money','pay_product_refund',110.00,986345.07,'订单退款到余额110元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1057,9624,'1549',0,'购买商品','now_money','pay_product',0.01,986345.07,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1058,9624,'1549',1,'商品退款','now_money','pay_product_refund',0.01,986345.07,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1059,9624,'1550',0,'购买商品','now_money','pay_product',228.00,986345.07,'余额支付228元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1060,9624,'1550',1,'商品退款','now_money','pay_product_refund',228.00,986345.07,'订单退款到余额228元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1061,9624,'1551',0,'购买商品','now_money','pay_product',228.00,986345.07,'余额支付228元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1062,9624,'1551',1,'商品退款','now_money','pay_product_refund',228.00,986345.07,'订单退款到余额228元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1063,9624,'1552',0,'购买商品','now_money','pay_product',50.00,986345.07,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1064,9624,'1553',0,'购买商品','now_money','pay_product',50.00,994491.82,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1065,9624,'1554',0,'购买商品','now_money','pay_product',12.00,986295.07,'余额支付12元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1066,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1067,9624,'8cdf19c9c3a555362e5fac5efb5fa15a',0,'积分抵扣','integral','deduction',0.01,10.00,'购买商品使用0.01积分抵扣0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1068,9624,'1555',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1069,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1070,9624,'1556',0,'购买商品','now_money','pay_product',12.00,994441.82,'余额支付12元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1071,9624,'1557',0,'购买商品','now_money','pay_product',20.00,986283.07,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1072,9624,'1326',1,'购买商品赠送积分','integral','gain',100.00,110.00,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1073,9624,'1326',1,'获得推广佣金','now_money','brokerage',502.21,5945.45,'等风来,随风去成功消费2511.05元,奖励推广佣金502.21',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1074,9624,'1326',1,'获得推广佣金','now_money','brokerage',251.10,4363.61,'二级推广人等风来,随风去成功消费2511.05元,奖励推广佣金251.1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1075,9624,'1558',0,'购买商品','now_money','pay_product',20.00,994429.82,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1076,9624,'1559',0,'购买商品','now_money','pay_product',20.00,986263.07,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1077,9624,'1560',0,'购买商品','now_money','pay_product',20.00,994409.82,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1078,9624,'1561',0,'购买商品','now_money','pay_product',2.00,986243.07,'余额支付2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1079,9624,'1562',0,'购买商品','now_money','pay_product',2.00,994389.82,'余额支付2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1080,9624,'1563',0,'购买商品','now_money','pay_product',20.00,986241.07,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1081,9624,'1564',0,'购买商品','now_money','pay_product',20.00,994387.82,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1082,9624,'1566',0,'购买商品','now_money','pay_product',20.00,986221.07,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1085,9624,'1568',0,'购买商品','now_money','pay_product',285.00,986201.07,'余额支付285元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1086,9624,'1569',0,'购买商品','now_money','pay_product',20.00,985916.07,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1092,9624,'1567',0,'购买商品','now_money','pay_product',20.00,994367.82,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1093,9624,'1570',0,'购买商品','now_money','pay_product',20.00,985896.07,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1094,9624,'1571',0,'购买商品','now_money','pay_product',20.00,994347.82,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1095,9624,'1572',0,'购买商品','now_money','pay_product',20.00,994327.82,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1096,9624,'1574',0,'购买商品','now_money','pay_product',20.00,985876.07,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1097,9624,'1575',0,'购买商品','now_money','pay_product',20.00,994307.82,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1098,9624,'1576',0,'购买商品','now_money','pay_product',2.00,994287.82,'余额支付2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1099,9624,'1577',0,'购买商品','now_money','pay_product',2.00,985856.07,'余额支付2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1102,9624,'1578',0,'购买商品','now_money','pay_product',2.00,985854.07,'余额支付2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1103,9624,'1579',0,'购买商品','now_money','pay_product',20.00,985852.07,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1104,9624,'1580',0,'购买商品','now_money','pay_product',2.00,994285.82,'余额支付2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1105,9624,'1581',0,'购买商品','now_money','pay_product',20.00,985832.07,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1106,9624,'1582',0,'购买商品','now_money','pay_product',20.00,994283.82,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1107,9624,'1583',0,'购买商品','now_money','pay_product',20.00,994263.82,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1108,9624,'1584',0,'购买商品','now_money','pay_product',20.00,985812.07,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1109,9624,'1585',0,'购买商品','now_money','pay_product',20.00,985792.07,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1110,9624,'1586',0,'购买商品','now_money','pay_product',20.00,985772.07,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1111,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1112,9624,'1591',0,'购买商品','now_money','pay_product',0.01,985752.07,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1113,9624,'1592',0,'购买商品','now_money','pay_product',20.00,985752.06,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1114,9624,'1593',0,'购买商品','now_money','pay_product',0.01,985732.06,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1115,9624,'1594',0,'购买商品','now_money','pay_product',436.00,985732.05,'余额支付436元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1116,9624,'1595',0,'购买商品','now_money','pay_product',0.01,994243.82,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1117,9624,'1596',0,'购买商品','now_money','pay_product',20.00,985296.05,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1118,9624,'1597',0,'购买商品','now_money','pay_product',0.01,985276.05,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1119,9624,'1598',0,'购买商品','now_money','pay_product',285.00,985276.04,'余额支付285元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1120,9624,'1599',0,'购买商品','now_money','pay_product',285.00,984991.04,'余额支付285元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1121,9624,'1600',0,'购买商品','now_money','pay_product',0.01,984706.04,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1122,9624,'1601',0,'购买商品','now_money','pay_product',0.01,984706.03,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1123,9624,'1602',0,'购买商品','now_money','pay_product',0.01,984706.02,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1124,9624,'1603',0,'购买商品','now_money','pay_product',225.60,984706.01,'余额支付225.6元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1125,9624,'1603',1,'商品退款','now_money','pay_product_refund',225.60,984706.01,'订单退款到余额225.6元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1126,9624,'0',1,'签到奖励','integral','sign',10.00,210.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1127,9624,'1604',0,'购买商品','now_money','pay_product',20.00,984706.01,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1128,9624,'1604',1,'商品退款','now_money','pay_product_refund',20.00,984706.01,'订单退款到余额20元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1129,9624,'1605',0,'购买商品','now_money','pay_product',0.01,984706.01,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1130,9624,'1606',0,'购买商品','now_money','pay_product',84.00,984706.00,'余额支付84元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1131,9624,'1607',0,'购买商品','now_money','pay_product',0.01,994243.81,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1132,9624,'1608',0,'购买商品','now_money','pay_product',0.01,994243.80,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1133,9624,'1609',0,'购买商品','now_money','pay_product',297.00,994243.79,'余额支付297元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1134,9624,'1610',0,'购买商品','now_money','pay_product',282.00,984622.00,'余额支付282元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1135,9624,'1611',0,'购买商品','now_money','pay_product',297.00,993946.79,'余额支付297元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1136,9624,'1612',0,'购买商品','now_money','pay_product',114.00,993649.79,'余额支付114元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1137,9624,'1613',0,'购买商品','now_money','pay_product',0.01,5288.70,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1138,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1139,9624,'1614',0,'购买商品','now_money','pay_product',0.01,984340.00,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1140,9624,'1615',0,'购买商品','now_money','pay_product',0.01,98792.97,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1141,9624,'1616',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1142,9624,'1617',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1143,9624,'1620',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1144,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1145,9624,'1622',0,'购买商品','now_money','pay_product',0.01,984339.99,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1146,9624,'1625',0,'购买商品','now_money','pay_product',0.01,984339.98,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1147,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1157,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1158,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1159,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1160,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-12-10 15:52:30:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1161,9624,'1519',1,'购买商品赠送积分','integral','gain',100.00,1336.80,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1162,9624,'1519',1,'获得推广佣金','now_money','brokerage',17.80,4381.41,'路人甲成功消费99元,奖励推广佣金17.8',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1163,9624,'1628',0,'购买商品','now_money','pay_product',0.01,984339.97,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1164,9624,'1629',0,'购买商品','now_money','pay_product',75.20,984339.96,'余额支付75.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1165,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1166,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1167,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1170,9624,'7884dafebb7f7ff887df93aa9ab4ef9d',0,'积分抵扣','integral','deduction',10.00,10.00,'购买商品使用10积分抵扣10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1171,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1172,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-12-14 11:12:40:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1173,9624,'0',1,'签到奖励','integral','sign',10.00,19.99,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1174,9624,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1175,9624,'1641',0,'购买商品','now_money','pay_product',0.01,993535.79,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1176,1,'0',1,'签到奖励','integral','sign',10.00,0.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-22 18:31:43'), (1177,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1178,9624,'1643',0,'购买商品','now_money','pay_product',79.20,993535.78,'余额支付79.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1179,9624,'1644',0,'购买商品','now_money','pay_product',79.20,5288.69,'余额支付79.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1180,9624,'1645',0,'购买商品','now_money','pay_product',79.20,5209.49,'余额支付79.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1181,9624,'1645',1,'获得推广佣金','now_money','brokerage',11.84,5957.29,'A成功消费79.2元,奖励推广佣金11.84',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1182,9624,'1645',1,'获得推广佣金','now_money','brokerage',5.92,4387.33,'二级推广人A成功消费79.2元,奖励推广佣金5.92',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1183,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1184,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-12-18 09:33:48:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1185,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1186,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1187,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1188,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1190,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1191,9624,'1648',0,'购买商品','now_money','pay_product',0.01,993456.58,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1192,9624,'1649',0,'购买商品','now_money','pay_product',20.00,993456.57,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1193,9624,'1650',0,'购买商品','now_money','pay_product',0.01,993436.57,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1194,9624,'1651',0,'购买商品','now_money','pay_product',0.01,993436.56,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1195,9624,'1652',0,'购买商品','now_money','pay_product',0.01,993436.55,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1196,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-12-19 16:43:33:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1197,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1198,9624,'1655',0,'购买商品','now_money','pay_product',0.01,984264.76,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1199,9624,'1656',0,'购买商品','now_money','pay_product',79.20,993436.54,'余额支付79.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1200,9624,'1657',0,'购买商品','now_money','pay_product',79.20,993357.34,'余额支付79.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1201,9624,'1658',0,'购买商品','now_money','pay_product',297.00,993278.14,'余额支付297元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1202,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-12-21 11:06:15:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1203,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1204,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1209,9624,'2cf6cb785e95e9bfdda300743ad318f1',0,'积分抵扣','integral','deduction',8.00,10.00,'购买商品使用8积分抵扣8元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1210,9624,'1663',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1211,9624,'f95bd24298217be627af8123a4a9363d',0,'积分抵扣','integral','deduction',8.00,10.00,'购买商品使用8积分抵扣8元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1212,9624,'1664',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1213,9624,'1665',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1214,9624,'1666',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1215,9624,'1667',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1216,9624,'1669',0,'购买商品','now_money','pay_product',0.01,992981.14,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1217,9624,'1670',0,'购买商品','now_money','pay_product',0.01,992981.13,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1218,9624,'1671',0,'购买商品','now_money','pay_product',0.01,984264.75,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1219,9624,'1672',0,'购买商品','now_money','pay_product',282.00,984264.74,'余额支付282元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1220,9624,'1673',0,'购买商品','now_money','pay_product',75.20,983982.74,'余额支付75.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1221,1,'1674',0,'购买商品','now_money','pay_product',75.20,983907.54,'余额支付75.2元购买商品',1,'2020-05-14 11:18:45','2020-06-22 18:30:57'), (1222,9624,'1675',0,'购买商品','now_money','pay_product',75.20,983832.34,'余额支付75.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1223,9624,'1676',0,'购买商品','now_money','pay_product',79.20,992981.12,'余额支付79.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1224,9624,'0',1,'签到奖励','integral','sign',10.00,1446.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1225,9624,'1677',0,'购买商品','now_money','pay_product',282.00,983757.14,'余额支付282元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1226,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1227,9624,'1681',0,'购买商品','now_money','pay_product',114.00,992901.92,'余额支付114元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1228,9624,'1682',0,'购买商品','now_money','pay_product',12.00,983475.14,'余额支付12元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1229,9624,'0',1,'签到奖励','integral','sign',10.00,1456.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1230,9624,'0',1,'签到奖励','integral','sign',10.00,40.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1231,9624,'1683',0,'购买商品','now_money','pay_product',20.00,983463.14,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1232,9624,'0',1,'签到奖励','integral','sign',10.00,30.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1235,9624,'34eb108f1bdd1bb278a69dde916d91c5',0,'积分抵扣','integral','deduction',10.00,10.00,'购买商品使用10积分抵扣10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1236,9624,'1688',0,'购买商品','now_money','pay_product',75.20,983443.14,'余额支付75.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1237,9624,'1690',0,'购买商品','now_money','pay_product',79.20,5130.29,'余额支付79.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1238,9624,'1691',0,'购买商品','now_money','pay_product',20.00,5051.09,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1239,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1240,9624,'1693',0,'购买商品','now_money','pay_product',296.00,5031.09,'余额支付296元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1241,9624,'1693',1,'获得推广佣金','now_money','brokerage',39.20,5996.49,'A成功消费296元,奖励推广佣金39.2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1242,9624,'1693',1,'获得推广佣金','now_money','brokerage',19.60,4406.93,'二级推广人A成功消费296元,奖励推广佣金19.6',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1243,9624,'1454',1,'购买商品赠送积分','integral','gain',100.00,100.00,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1244,9624,'1454',1,'获得推广佣金','now_money','brokerage',593.80,6590.29,'A成功消费2969.01元,奖励推广佣金593.8',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1245,9624,'1454',1,'获得推广佣金','now_money','brokerage',296.90,4703.83,'二级推广人A成功消费2969.01元,奖励推广佣金296.9',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1246,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-12-25 10:22:29:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1247,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1248,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1249,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-12-25 14:55:03:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1250,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-12-25 16:16:36:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1251,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-12-25 16:27:42:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1252,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-12-25 16:32:43:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1253,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-12-25 16:37:54:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1254,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1255,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-12-25 17:59:16:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1256,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1257,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1258,9624,'1699',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1259,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1260,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1261,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1262,9624,'0',1,'签到奖励','integral','sign',10.00,30.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1263,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1264,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-12-30 16:04:19:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1265,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2019-12-31 13:19:48:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1266,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1267,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1268,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1269,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1270,9624,'108',1,'用户余额充值','now_money','recharge',0.01,0.00,'成功充值余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1271,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1272,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1273,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1274,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1275,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1276,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1277,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1278,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1279,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1280,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1281,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-01-08 11:03:47:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1282,9624,'0',1,'签到奖励','integral','sign',10.00,99953.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1283,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1284,9624,'1714',0,'购买商品','now_money','pay_product',0.01,4735.09,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1285,9624,'0',1,'签到奖励','integral','sign',20.00,99973.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1286,9624,'0',1,'签到奖励','integral','sign',20.00,40.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1287,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1288,9624,'1715',0,'购买商品','now_money','pay_product',0.01,4735.08,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1289,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-01-10 14:51:26:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1290,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-01-10 15:17:27:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1291,9624,'1716',0,'购买商品','now_money','pay_product',0.01,4735.07,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1292,9624,'1717',0,'购买商品','now_money','pay_product',0.01,4735.06,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1293,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-01-10 16:33:03:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1294,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1295,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1296,9624,'1720',0,'购买商品','now_money','pay_product',0.01,98792.96,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1297,9624,'1720',1,'购买商品赠送积分','integral','gain',249.00,99973.77,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1298,9624,'21',0,'余额提现','now_money','extract',100.00,6490.29,'使用微信提现100元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1299,9624,'1721',0,'购买商品','now_money','pay_product',0.01,4735.05,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1300,9624,'1722',0,'购买商品','now_money','pay_product',0.01,4735.04,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1301,9624,'1458',1,'购买商品赠送积分','integral','gain',249.00,1456.80,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1302,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1303,9624,'1725',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1304,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1305,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1306,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1307,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1310,9624,'f154c44823aae481ca8d5bd978ba4cb1',0,'积分抵扣','integral','deduction',0.01,10.00,'购买商品使用0.01积分抵扣0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1311,9624,'1728',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1312,9624,'1729',0,'购买商品','now_money','pay_product',95.00,992787.92,'余额支付95元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1313,9624,'1729',1,'购买商品赠送积分','integral','gain',100.00,1805.80,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1314,9624,'1',1,'系统增加余额','now_money','system_add',100000.00,100000.00,'系统增加了100000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1315,9624,'1731',0,'购买商品','now_money','pay_product',80.00,100000.00,'余额支付80元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1316,9624,'1732',0,'购买商品','now_money','pay_product',80.00,99920.00,'余额支付80元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1317,9624,'1733',0,'购买商品','now_money','pay_product',75.20,983367.94,'余额支付75.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1318,9624,'1676',1,'商品退款','now_money','pay_product_refund',1.00,992693.92,'订单退款到余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1319,9624,'1649',1,'商品退款','now_money','pay_product_refund',2.00,992695.92,'订单退款到余额2元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1320,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1321,9624,'1738',0,'购买商品','now_money','pay_product',1.96,992695.92,'余额支付1.96元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1322,9624,'1738',1,'购买商品赠送积分','integral','gain',249.00,2054.80,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1323,9624,'0',1,'签到奖励','integral','sign',20.00,30.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1328,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1329,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1330,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1331,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1332,9624,'0',1,'签到奖励','integral','sign',10.00,30.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1333,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1334,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1335,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1336,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1337,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1338,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1339,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1340,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-07 10:11:02:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1341,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1343,9624,'585f763016672afff6a900cc8a0d1171',0,'积分抵扣','integral','deduction',10.00,10.00,'购买商品使用10积分抵扣10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1344,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,983292.74,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1345,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,983293.74,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1346,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,983294.74,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1347,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,992693.96,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1348,9624,'1748',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1349,9624,'1469',1,'商品退款','now_money','pay_product_refund',0.01,98792.96,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1350,9624,'1436',1,'商品退款','now_money','pay_product_refund',0.01,992694.97,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1351,9624,'1288',1,'商品退款','now_money','pay_product_refund',0.10,9706.50,'订单退款到余额0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1352,9624,'1680',0,'购买商品','now_money','pay_product',114.00,992694.97,'余额支付114元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1353,9624,'1624',0,'购买商品','now_money','pay_product',0.01,992580.97,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1354,9624,'1638',0,'购买商品','now_money','pay_product',201.00,983295.74,'余额支付201元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1355,9624,'1036',0,'购买商品','now_money','pay_product',0.10,992580.96,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1356,9624,'762',0,'购买商品','now_money','pay_product',0.01,992580.86,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1357,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-09 20:27:41:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1358,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1359,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-10 00:38:45:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1360,9624,'1750',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1361,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1362,9624,'1751',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1363,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1365,9624,'e87f960c7f51cd8946063ce3f35aecf5',0,'积分抵扣','integral','deduction',2.00,10.00,'购买商品使用2积分抵扣2元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1366,9624,'1752',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1367,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1368,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-11 13:08:54:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1369,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-11 22:12:33:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1370,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-12 00:15:35:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1371,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-12 04:24:41:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1372,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-12 04:48:44:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1373,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-12 06:23:25:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1374,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-12 07:32:13:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1375,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-12 09:12:51:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1376,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-12 10:05:33:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1377,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-12 10:33:01:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1378,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-12 13:25:54:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1379,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1380,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-12 16:40:21:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1381,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-12 18:51:02:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1382,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-12 21:04:45:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1383,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-13 03:02:52:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1384,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-13 04:43:52:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1385,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-13 12:12:44:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1386,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-13 17:46:15:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1387,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-14 04:39:19:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1388,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-14 08:13:59:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1389,9624,'1758',0,'购买商品','now_money','pay_product',0.00,0.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1390,9624,'1',1,'系统增加余额','now_money','system_add',1000.00,1000.00,'系统增加了1000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1391,9624,'1760',0,'购买商品','now_money','pay_product',81.00,1000.00,'余额支付81元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1392,9624,'1761',0,'购买商品','now_money','pay_product',376.00,983094.74,'余额支付376元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1394,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1395,9624,'0',1,'签到奖励','integral','sign',10.00,39.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1396,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-15 02:02:46:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1404,9624,'0',1,'签到奖励','integral','sign',10.00,2064.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1405,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1406,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1407,9624,'1762',0,'购买商品','now_money','pay_product',0.00,99840.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1408,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-17 20:55:19:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1409,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,999999.99,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1410,9624,'1',1,'系统增加余额','now_money','system_add',1000.00,999999.99,'系统增加了1000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1411,9624,'1766',0,'购买商品','now_money','pay_product',1.10,999999.99,'余额支付1.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1412,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-19 16:15:40:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1413,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-19 16:30:15:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1414,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1415,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1420,9624,'1773',0,'购买商品','now_money','pay_product',1.10,4735.03,'余额支付1.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1421,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1422,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1423,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-22 01:12:28:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1424,9624,'1780',0,'购买商品','now_money','pay_product',81.00,4733.93,'余额支付81元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1425,9624,'1780',1,'获得推广佣金','now_money','brokerage',48.00,6537.29,'A成功消费80元,奖励推广佣金48',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1426,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1427,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-22 19:53:25:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1428,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1429,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1430,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1431,9624,'0',1,'签到奖励','integral','sign',20.00,30.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1432,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-23 18:00:04:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1433,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1434,9624,'1785',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1435,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-24 05:38:42:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1436,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-24 07:12:38:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1437,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1438,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-24 10:24:54:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1439,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-24 11:44:35:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1440,9624,'1283',1,'购买商品赠送积分','integral','gain',249.00,2064.80,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1441,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-24 14:43:10:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1442,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-24 22:56:17:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1443,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-25 01:34:08:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1444,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-25 03:24:02:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1445,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-25 06:09:24:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1446,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-25 12:18:13:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1447,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-25 14:23:47:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1448,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1449,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-25 22:01:08:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1450,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-26 00:28:31:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1451,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-26 01:22:21:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1455,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1456,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-26 06:05:53:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1457,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-26 06:10:04:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1458,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-26 12:57:53:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1459,9624,'0',0,'用户佣金转入余额','now_money','recharge',100.00,0.00,'成功转入余额100元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1460,9624,'0',0,'用户佣金转入余额','now_money','recharge',300.00,100.00,'成功转入余额300元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1461,9624,'0',0,'用户佣金转入余额','now_money','recharge',10.00,999998.89,'成功转入余额10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1462,9624,'1787',0,'购买商品','now_money','pay_product',0.00,999999.99,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1473,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-26 15:29:58:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1474,9624,'1793',0,'购买商品','now_money','pay_product',80.00,99840.00,'余额支付80元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1475,9624,'1794',0,'购买商品','now_money','pay_product',75.20,982718.74,'余额支付75.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1476,9624,'1796',0,'购买商品','now_money','pay_product',880.00,99760.00,'余额支付880元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1477,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-27 04:13:08:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1478,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-27 04:46:13:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1479,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1480,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-27 11:19:05:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1481,9624,'1797',0,'购买商品','now_money','pay_product',76.20,982643.54,'余额支付76.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1482,9624,'1798',0,'购买商品','now_money','pay_product',1.10,982567.34,'余额支付1.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1483,9624,'1799',0,'购买商品','now_money','pay_product',1.10,982566.24,'余额支付1.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1484,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-27 14:14:52:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1485,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1486,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-27 15:12:35:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1487,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-27 15:35:55:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1488,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-27 16:16:05:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1489,9624,'1801',0,'购买商品','now_money','pay_product',0.20,98880.00,'余额支付0.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1490,9624,'1802',0,'购买商品','now_money','pay_product',80.00,98879.80,'余额支付80元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1491,9624,'1803',0,'购买商品','now_money','pay_product',0.20,98799.80,'余额支付0.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1492,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-27 19:15:26:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1493,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-27 19:55:23:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1494,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-27 21:11:41:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1495,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-27 22:43:08:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1496,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-28 03:59:15:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1497,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-28 05:36:01:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1498,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-28 06:38:26:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1499,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-28 06:56:49:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1500,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-28 08:01:43:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1501,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-28 09:30:06:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1502,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-28 10:41:09:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1503,9624,'1807',0,'购买商品','now_money','pay_product',1.10,982565.14,'余额支付1.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1504,9624,'1808',0,'购买商品','now_money','pay_product',99.00,999999.99,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1505,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1506,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-29 04:04:35:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1507,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-29 04:28:57:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1508,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-29 09:24:37:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1509,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-29 11:32:24:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1510,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-29 12:20:31:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1511,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-29 12:25:23:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1512,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-29 12:56:34:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1513,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-02-29 13:39:09:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1514,9624,'1810',0,'购买商品','now_money','pay_product',79.40,999900.99,'余额支付79.4元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1516,9624,'8299727539d81aa1e791354880a5a044',0,'积分抵扣','integral','deduction',79.40,2313.80,'购买商品使用79.4积分抵扣79.4元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1517,9624,'1811',0,'购买商品','now_money','pay_product',0.00,999821.59,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1519,9624,'cdee2ed05d8d29351cb6453d263480e2',0,'积分抵扣','integral','deduction',79.40,2234.40,'购买商品使用79.4积分抵扣79.4元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1520,9624,'1812',0,'购买商品','now_money','pay_product',0.00,999821.59,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1521,9624,'1',0,'系统减少余额','now_money','system_sub',999800.00,21.59,'系统扣除了999800余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1522,9624,'1',1,'系统增加积分','integral','system_add',999800.00,999999.99,'系统增加了999800积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1524,9624,'1',0,'系统减少积分','integral','system_sub',999999.00,0.99,'系统扣除了999999积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1526,9624,'1',1,'系统增加积分','integral','system_add',10.00,10.99,'系统增加了10积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1528,9624,'c762a170f85d64657e636ad34fe186b3',0,'积分抵扣','integral','deduction',10.99,10.99,'购买商品使用10.99积分抵扣10.99元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1529,9624,'c762a170f85d64657e636ad34fe186b3',1,'积分回退','integral','deduction',10.99,10.99,'购买商品失败,回退积分10.99',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1530,9624,'0',1,'签到奖励','integral','sign',10.00,30.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1531,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-01 03:36:42:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1532,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-01 11:16:55:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1533,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-01 11:26:16:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1534,9624,'1815',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1535,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-01 16:34:53:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1536,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-01 16:55:31:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1537,9624,'0',1,'签到奖励','integral','sign',10.00,40.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1538,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-02 03:38:57:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1539,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-02 07:57:39:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1540,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-02 08:56:24:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1541,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1542,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-02 11:16:39:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1543,9624,'1819',0,'购买商品','now_money','pay_product',1.10,21.59,'余额支付1.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1544,9624,'1820',0,'购买商品','now_money','pay_product',0.10,20.49,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1545,9624,'1820',1,'购买商品赠送积分','integral','gain',249.00,259.99,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1546,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-02 12:56:39:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1547,9624,'0',1,'签到奖励','integral','sign',10.00,30.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1548,9624,'0',0,'用户佣金转入余额','now_money','recharge',0.10,982564.04,'成功转入余额0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1549,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-03 03:38:43:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1550,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1551,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1552,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1553,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-04 08:54:45:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1554,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-04 11:21:06:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1555,9624,'1822',0,'购买商品','now_money','pay_product',10.10,400.00,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1556,9624,'1824',0,'购买商品','now_money','pay_product',10.10,98792.96,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1557,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1558,9624,'1826',0,'购买商品','now_money','pay_product',81.20,982564.14,'余额支付81.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1559,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-05 06:31:08:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1560,9624,'1827',0,'购买商品','now_money','pay_product',100.00,98799.60,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1561,9624,'1828',0,'购买商品','now_money','pay_product',10.10,982482.94,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1562,9624,'1829',0,'购买商品','now_money','pay_product',10.10,982472.84,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1563,9624,'1830',0,'购买商品','now_money','pay_product',10.10,982462.74,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1564,9624,'1831',0,'购买商品','now_money','pay_product',10.10,982452.64,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1565,9624,'1832',0,'购买商品','now_money','pay_product',10.10,982442.54,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1566,9624,'1833',0,'购买商品','now_money','pay_product',10.10,982432.44,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1567,9624,'1834',0,'购买商品','now_money','pay_product',10.10,982422.34,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1568,9624,'1835',0,'购买商品','now_money','pay_product',10.10,982412.24,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1569,9624,'1836',0,'购买商品','now_money','pay_product',10.10,982402.14,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1571,9624,'1839',0,'购买商品','now_money','pay_product',10.10,982392.04,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1572,9624,'1844',0,'购买商品','now_money','pay_product',0.10,98699.60,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1573,9624,'1845',0,'购买商品','now_money','pay_product',0.10,98699.50,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1574,9624,'1847',0,'购买商品','now_money','pay_product',4106.40,98782.86,'余额支付4106.4元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1575,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-06 10:32:21:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1576,9624,'1848',0,'购买商品','now_money','pay_product',99.00,98699.40,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1577,9624,'1850',0,'购买商品','now_money','pay_product',1.00,98600.40,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1578,9624,'1851',0,'购买商品','now_money','pay_product',100.00,98599.40,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1579,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1580,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-06 14:34:32:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1581,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1582,9624,'1854',0,'购买商品','now_money','pay_product',0.00,919.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1583,9624,'1855',0,'购买商品','now_money','pay_product',15.00,919.00,'余额支付15元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1584,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,10020.39,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1585,9624,'1856',0,'购买商品','now_money','pay_product',108.00,10020.39,'余额支付108元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1586,9624,'1856',1,'购买商品赠送积分','integral','gain',249.00,259.99,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1587,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,10000.00,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1588,9624,'1857',0,'购买商品','now_money','pay_product',110.00,10000.00,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1589,9624,'1857',1,'购买商品赠送积分','integral','gain',249.00,0.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1590,9624,'1860',0,'购买商品','now_money','pay_product',112.00,904.00,'余额支付112元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1591,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-06 19:10:42:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1592,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1593,9624,'1467',0,'购买商品','now_money','pay_product',113.00,94676.46,'余额支付113元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1595,9624,'1761',1,'购买商品赠送积分','integral','gain',100.00,220.00,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1596,9624,'1734',1,'购买商品赠送积分','integral','gain',100.00,320.00,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1597,9624,'1839',1,'购买商品赠送积分','integral','gain',249.00,420.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1598,9624,'1762',1,'购买商品赠送积分','integral','gain',100.00,30.00,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1599,9624,'1836',1,'购买商品赠送积分','integral','gain',249.00,669.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1600,9624,'1835',1,'购买商品赠送积分','integral','gain',249.00,918.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1601,9624,'1834',1,'购买商品赠送积分','integral','gain',249.00,1167.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1602,9624,'1833',1,'购买商品赠送积分','integral','gain',249.00,1416.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1603,9624,'1832',1,'购买商品赠送积分','integral','gain',249.00,1665.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1604,9624,'1864',0,'购买商品','now_money','pay_product',490.00,9912.39,'余额支付490元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1605,9624,'1865',0,'购买商品','now_money','pay_product',108.00,9422.39,'余额支付108元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1606,9624,'1866',0,'购买商品','now_money','pay_product',108.00,9314.39,'余额支付108元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1607,9624,'1831',1,'购买商品赠送积分','integral','gain',249.00,1914.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1608,9624,'1867',0,'购买商品','now_money','pay_product',88.40,9206.39,'余额支付88.4元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1609,9624,'1830',1,'购买商品赠送积分','integral','gain',249.00,2163.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1610,9624,'1829',1,'购买商品赠送积分','integral','gain',249.00,2412.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1611,9624,'1869',0,'购买商品','now_money','pay_product',108.00,9117.99,'余额支付108元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1612,9624,'1870',0,'购买商品','now_money','pay_product',104.00,982381.94,'余额支付104元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1613,9624,'1871',0,'购买商品','now_money','pay_product',278.20,982277.94,'余额支付278.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1614,9624,'1872',0,'购买商品','now_money','pay_product',171.80,9009.99,'余额支付171.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1615,9624,'1873',0,'购买商品','now_money','pay_product',559.00,981999.74,'余额支付559元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1616,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-07 15:43:49:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1617,9624,'1873',1,'购买商品赠送积分','integral','gain',1047.00,2661.00,'购买商品赠送1047积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1618,9624,'0',1,'签到奖励','integral','sign',10.00,30.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1619,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-08 08:52:00:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1620,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-08 14:52:31:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1621,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-08 16:04:11:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1622,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-08 17:11:40:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1623,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-08 18:33:52:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1624,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-08 20:03:11:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1625,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-08 20:44:27:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1626,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1627,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-09 04:54:25:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1628,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-09 05:44:42:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1629,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-09 08:12:58:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1630,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-09 08:26:52:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1631,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-09 13:33:43:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1632,9624,'1874',0,'购买商品','now_money','pay_product',100.00,98499.40,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1633,9624,'1875',0,'购买商品','now_money','pay_product',1.00,98399.40,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1634,9624,'1877',0,'购买商品','now_money','pay_product',1.00,98398.40,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1635,9624,'1878',0,'购买商品','now_money','pay_product',1.00,98397.40,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1636,9624,'1879',0,'购买商品','now_money','pay_product',1.00,98396.40,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1637,9624,'1880',0,'购买商品','now_money','pay_product',1.00,98395.40,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1638,9624,'1881',0,'购买商品','now_money','pay_product',1.00,98394.40,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1639,9624,'1882',0,'购买商品','now_money','pay_product',1.00,98393.40,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1640,9624,'1883',0,'购买商品','now_money','pay_product',1.00,98392.40,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1641,9624,'1884',0,'购买商品','now_money','pay_product',1.00,98391.40,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1642,9624,'1885',0,'购买商品','now_money','pay_product',88.40,94563.46,'余额支付88.4元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1643,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1645,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1649,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1650,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-10 04:25:00:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1651,9624,'0',1,'签到奖励','integral','sign',20.00,30.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1652,9624,'1886',0,'购买商品','now_money','pay_product',0.00,4652.93,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1653,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1654,9624,'1888',0,'购买商品','now_money','pay_product',110.00,4652.93,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1655,9624,'1888',1,'商品退款','now_money','pay_product_refund',110.00,4652.93,'订单退款到余额110元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1656,9624,'1890',0,'购买商品','now_money','pay_product',110.00,4652.93,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1657,9624,'1890',1,'商品退款','now_money','pay_product_refund',110.00,4652.93,'订单退款到余额110元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1658,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1659,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-11 06:03:25:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1660,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-11 06:03:44:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1661,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-11 08:29:46:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1662,9624,'1892',0,'购买商品','now_money','pay_product',16.00,4652.93,'余额支付16元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1663,9624,'1893',0,'购买商品','now_money','pay_product',98.00,94475.06,'余额支付98元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1664,9624,'1894',0,'购买商品','now_money','pay_product',94.00,981440.74,'余额支付94元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1667,9624,'1895',0,'购买商品','now_money','pay_product',104.00,981346.74,'余额支付104元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1669,9624,'1895',1,'购买商品赠送积分','integral','gain',249.00,3708.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1670,9624,'1897',0,'购买商品','now_money','pay_product',108.00,94377.06,'余额支付108元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1671,9624,'1896',0,'购买商品','now_money','pay_product',108.00,94269.06,'余额支付108元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1676,9624,'1898',0,'购买商品','now_money','pay_product',108.00,94161.06,'余额支付108元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1677,9624,'1898',1,'购买商品赠送积分','integral','gain',100.00,100222.77,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1682,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1683,9624,'1899',0,'购买商品','now_money','pay_product',85.20,981242.74,'余额支付85.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1684,9624,'1900',0,'购买商品','now_money','pay_product',109.00,98390.40,'余额支付109元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1686,9624,'ecda77cfff62baabfb0fbcba360018fa',0,'积分抵扣','integral','deduction',104.00,100322.77,'购买商品使用104积分抵扣104元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1687,9624,'1901',0,'购买商品','now_money','pay_product',0.00,94053.06,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1688,9624,'0',1,'签到奖励','integral','sign',30.00,60.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1689,9624,'1902',0,'购买商品','now_money','pay_product',110.00,4636.93,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1690,9624,'1903',0,'购买商品','now_money','pay_product',90.00,4526.93,'余额支付90元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1691,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1692,9624,'1904',0,'购买商品','now_money','pay_product',58.40,94053.06,'余额支付58.4元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1693,9624,'1',1,'系统增加积分','integral','system_add',200.00,400.00,'系统增加了200积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1694,9624,'1905',0,'购买商品','now_money','pay_product',11.00,389.90,'余额支付11元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1695,9624,'1906',0,'购买商品','now_money','pay_product',11.00,378.90,'余额支付11元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1696,9624,'1907',0,'购买商品','now_money','pay_product',100.00,367.90,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1697,9624,'1908',0,'购买商品','now_money','pay_product',110.00,267.90,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1698,9624,'1909',0,'购买商品','now_money','pay_product',110.00,157.90,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1699,9624,'1910',0,'购买商品','now_money','pay_product',82.20,98281.40,'余额支付82.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1700,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-12 03:30:52:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1701,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1702,9624,'1912',0,'购买商品','now_money','pay_product',11.00,8838.19,'余额支付11元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1703,9624,'1913',0,'购买商品','now_money','pay_product',299.00,8827.19,'余额支付299元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1704,9624,'1914',0,'购买商品','now_money','pay_product',78.40,8528.19,'余额支付78.4元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1705,9624,'1916',0,'购买商品','now_money','pay_product',303.00,8449.79,'余额支付303元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1706,9624,'1918',0,'购买商品','now_money','pay_product',87.00,98199.20,'余额支付87元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1707,9624,'1',1,'系统增加余额','now_money','system_add',999999.99,999999.99,'系统增加了1000000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1708,9624,'1921',0,'购买商品','now_money','pay_product',0.00,98112.20,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1709,9624,'1900',1,'购买商品赠送积分','integral','gain',249.00,130.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1710,9624,'1922',0,'购买商品','now_money','pay_product',0.00,98112.20,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1711,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1712,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1713,9624,'1929',0,'购买商品','now_money','pay_product',115.00,93994.66,'余额支付115元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1714,9624,'1930',0,'购买商品','now_money','pay_product',90.00,98112.20,'余额支付90元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1715,9624,'1931',0,'购买商品','now_money','pay_product',115.00,93879.66,'余额支付115元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1716,9624,'1932',0,'购买商品','now_money','pay_product',109.00,93764.66,'余额支付109元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1717,9624,'1939',0,'购买商品','now_money','pay_product',109.00,93655.66,'余额支付109元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1718,9624,'1940',0,'购买商品','now_money','pay_product',100.00,999999.99,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1719,9624,'1960',0,'购买商品','now_money','pay_product',90.00,999899.99,'余额支付90元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1720,9624,'1966',0,'购买商品','now_money','pay_product',80.00,93546.66,'余额支付80元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1721,9624,'1967',0,'购买商品','now_money','pay_product',80.00,93466.66,'余额支付80元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1722,9624,'0',1,'签到奖励','integral','sign',10.00,410.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1723,9624,'1968',0,'购买商品','now_money','pay_product',100.00,93386.66,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1724,9624,'1968',1,'购买商品赠送积分','integral','gain',100.00,100318.77,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1725,9624,'1773',1,'购买商品赠送积分','integral','gain',249.00,410.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1726,9624,'1969',0,'购买商品','now_money','pay_product',100.00,93286.66,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1727,9624,'0',1,'签到奖励','integral','sign',10.00,100328.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1728,9624,'1970',0,'购买商品','now_money','pay_product',300.00,93186.66,'余额支付300元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1741,9624,'1972',0,'购买商品','now_money','pay_product',0.00,98022.20,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1747,9624,'1973',0,'购买商品','now_money','pay_product',90.00,92886.66,'余额支付90元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1749,9624,'1977',0,'购买商品','now_money','pay_product',90.00,92796.66,'余额支付90元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1780,9624,'17e441cb62632c174e0ee7d9273c0b3c',0,'积分抵扣','integral','deduction',100328.77,100328.77,'购买商品使用100328.77积分抵扣0元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1781,9624,'1978',0,'购买商品','now_money','pay_product',109.00,92706.66,'余额支付109元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1782,9624,'1979',0,'购买商品','now_money','pay_product',100.00,999809.99,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1783,9624,'1988',0,'购买商品','now_money','pay_product',109.00,92597.66,'余额支付109元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1784,9624,'1989',0,'购买商品','now_money','pay_product',109.00,92488.66,'余额支付109元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1785,9624,'1990',0,'购买商品','now_money','pay_product',109.00,92379.66,'余额支付109元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1792,9624,'1',1,'系统增加积分','integral','system_add',999999.99,999999.99,'系统增加了1000000积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1796,9624,'1993',0,'购买商品','now_money','pay_product',170.00,92270.66,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1797,9624,'2008',0,'购买商品','now_money','pay_product',170.00,981157.54,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1798,9624,'2009',0,'购买商品','now_money','pay_product',170.00,980987.54,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1799,9624,'2010',0,'购买商品','now_money','pay_product',170.00,980817.54,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1800,9624,'2011',0,'购买商品','now_money','pay_product',170.00,980647.54,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1801,9624,'2012',0,'购买商品','now_money','pay_product',109.00,999709.99,'余额支付109元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1802,9624,'2013',0,'购买商品','now_money','pay_product',100.00,999600.99,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1803,9624,'2015',0,'购买商品','now_money','pay_product',109.00,999500.99,'余额支付109元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1804,9624,'2016',0,'购买商品','now_money','pay_product',80.00,980477.54,'余额支付80元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1805,9624,'1',1,'系统增加余额','now_money','system_add',99999.00,99999.00,'系统增加了99999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1806,9624,'2018',0,'购买商品','now_money','pay_product',99.00,99999.00,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1807,9624,'2018',1,'获得推广佣金','now_money','brokerage',20.00,6547.29,'梁海涛成功消费99元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1808,9624,'2018',1,'获得推广佣金','now_money','brokerage',10.00,10.00,'二级推广人梁海涛成功消费99元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1810,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1811,9624,'2021',0,'购买商品','now_money','pay_product',109.00,999391.99,'余额支付109元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1812,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1813,9624,'1',1,'系统增加余额','now_money','system_add',100000.00,100000.00,'系统增加了100000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1814,9624,'1',1,'系统增加积分','integral','system_add',100000.00,100000.00,'系统增加了100000积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1815,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1816,9624,'0',1,'签到奖励','integral','sign',10.00,50.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1817,9624,'2026',0,'购买商品','now_money','pay_product',170.00,8146.79,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1820,9624,'2028',0,'购买商品','now_money','pay_product',109.00,4436.93,'余额支付109元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1821,9624,'1',1,'系统增加余额','now_money','system_add',9999.00,9999.00,'系统增加了9999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1822,9624,'2029',0,'购买商品','now_money','pay_product',109.00,9999.00,'余额支付109元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1823,9624,'2030',0,'购买商品','now_money','pay_product',170.00,98022.20,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1824,9624,'2031',0,'购买商品','now_money','pay_product',170.00,97852.20,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1825,9624,'2032',0,'购买商品','now_money','pay_product',0.00,97682.20,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1826,9624,'2033',0,'购买商品','now_money','pay_product',300.00,97682.20,'余额支付300元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1827,9624,'2034',0,'购买商品','now_money','pay_product',110.00,97382.20,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1828,9624,'2035',0,'购买商品','now_money','pay_product',110.00,97272.20,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1829,9624,'2037',0,'购买商品','now_money','pay_product',31.00,999282.99,'余额支付31元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1830,9624,'1',1,'系统增加余额','now_money','system_add',100000.00,100000.00,'系统增加了100000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1831,9624,'2039',0,'购买商品','now_money','pay_product',100.00,100000.00,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1832,9624,'2040',0,'购买商品','now_money','pay_product',35.00,999251.99,'余额支付35元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1833,9624,'2038',0,'购买商品','now_money','pay_product',35.00,999216.99,'余额支付35元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1834,9624,'2041',0,'购买商品','now_money','pay_product',35.00,7976.79,'余额支付35元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1835,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1836,9624,'2053',0,'购买商品','now_money','pay_product',45.00,999181.99,'余额支付45元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1837,9624,'2053',1,'购买商品赠送积分','integral','gain',45.00,5210.00,'购买商品赠送45积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1838,9624,'2053',1,'获得推广佣金','now_money','brokerage',7.00,6554.29,'徐斗明成功消费45元,奖励推广佣金7',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1839,9624,'2053',1,'获得推广佣金','now_money','brokerage',3.50,13.50,'二级推广人徐斗明成功消费45元,奖励推广佣金3.5',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1840,9624,'272',1,'用户余额充值','now_money','recharge',0.01,0.00,'成功充值余额0.01元,赠送0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1841,9624,'2021',1,'商品退款','now_money','pay_product_refund',109.00,999245.99,'订单退款到余额109元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1842,9624,'1940',1,'商品退款','now_money','pay_product_refund',100.00,999345.99,'订单退款到余额100元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1843,9624,'2053',1,'商品退款','now_money','pay_product_refund',45.00,999390.99,'订单退款到余额45元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1848,9624,'2054',0,'购买商品','now_money','pay_product',250.00,999390.99,'余额支付250元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1849,9624,'2055',0,'购买商品','now_money','pay_product',230.00,100000.00,'余额支付230元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1850,9624,'2056',0,'购买商品','now_money','pay_product',250.00,999140.99,'余额支付250元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1851,9624,'2057',0,'购买商品','now_money','pay_product',250.00,998890.99,'余额支付250元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1856,9624,'2058',0,'购买商品','now_money','pay_product',250.00,99900.00,'余额支付250元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1859,9624,'2059',0,'购买商品','now_money','pay_product',250.00,998640.99,'余额支付250元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1860,9624,'1f79580ee7c62e42354999606702abeb',0,'积分抵扣','integral','deduction',20.00,20.00,'购买商品使用20积分抵扣20元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1861,9624,'2062',0,'购买商品','now_money','pay_product',0.00,0.02,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1862,9624,'2066',0,'购买商品','now_money','pay_product',250.00,99900.00,'余额支付250元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1863,9624,'2067',0,'购买商品','now_money','pay_product',720.00,99650.00,'余额支付720元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1864,9624,'2068',0,'购买商品','now_money','pay_product',1299.00,998390.99,'余额支付1299元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1865,9624,'2068',1,'购买商品赠送积分','integral','gain',1299.00,5255.00,'购买商品赠送1299积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1866,9624,'2068',1,'获得推广佣金','now_money','brokerage',50.00,6604.29,'徐斗明成功消费1299元,奖励推广佣金50',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1867,9624,'2068',1,'获得推广佣金','now_money','brokerage',30.00,43.50,'二级推广人徐斗明成功消费1299元,奖励推广佣金30',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1868,9624,'2069',0,'购买商品','now_money','pay_product',330.00,92100.66,'余额支付330元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1869,9624,'1',1,'系统增加余额','now_money','system_add',9999.00,9999.00,'系统增加了9999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1870,9624,'2071',0,'购买商品','now_money','pay_product',45.00,997091.99,'余额支付45元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1871,9624,'2072',0,'购买商品','now_money','pay_product',99.00,9999.00,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1872,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,10000.00,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1873,9624,'2076',0,'购买商品','now_money','pay_product',170.00,9900.00,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1874,9624,'2079',0,'购买商品','now_money','pay_product',105.00,9730.00,'余额支付105元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1875,9624,'2080',0,'购买商品','now_money','pay_product',170.00,91770.66,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1876,9624,'2082',0,'购买商品','now_money','pay_product',1309.00,91600.66,'余额支付1309元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1877,9624,'2083',0,'购买商品','now_money','pay_product',110.00,10000.00,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1878,9624,'2084',0,'购买商品','now_money','pay_product',45.00,90291.66,'余额支付45元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1879,9624,'2085',0,'购买商品','now_money','pay_product',45.00,90246.66,'余额支付45元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1880,9624,'2090',0,'购买商品','now_money','pay_product',335.00,90201.66,'余额支付335元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1881,9624,'2091',0,'购买商品','now_money','pay_product',160.00,4327.93,'余额支付160元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1882,9624,'2092',0,'购买商品','now_money','pay_product',150.00,98930.00,'余额支付150元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1883,9624,'2094',0,'购买商品','now_money','pay_product',170.00,9625.00,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1884,9624,'2096',0,'购买商品','now_money','pay_product',109.00,98780.00,'余额支付109元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1885,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-16 19:01:20:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1886,9624,'2099',0,'购买商品','now_money','pay_product',310.00,97162.20,'余额支付310元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1887,9624,'2100',0,'购买商品','now_money','pay_product',130.00,96852.20,'余额支付130元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1888,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1889,9624,'2101',0,'购买商品','now_money','pay_product',120.00,89866.66,'余额支付120元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1890,9624,'2102',0,'购买商品','now_money','pay_product',170.00,89746.66,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1891,9624,'2103',0,'购买商品','now_money','pay_product',1309.00,89576.66,'余额支付1309元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1892,9624,'2104',0,'购买商品','now_money','pay_product',45.00,88267.66,'余额支付45元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1893,9624,'2107',0,'购买商品','now_money','pay_product',45.00,96722.20,'余额支付45元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1894,9624,'1',1,'系统增加余额','now_money','system_add',99999.00,99999.00,'系统增加了99999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1895,9624,'1',1,'系统增加积分','integral','system_add',99999.00,99999.00,'系统增加了99999积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1896,9624,'2108',0,'购买商品','now_money','pay_product',109.00,99999.00,'余额支付109元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1897,9624,'2109',0,'购买商品','now_money','pay_product',0.00,99890.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1898,9624,'2110',0,'购买商品','now_money','pay_product',35.00,88222.66,'余额支付35元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1899,9624,'0',1,'签到奖励','integral','sign',10.00,100009.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1900,9624,'2111',0,'购买商品','now_money','pay_product',35.00,88187.66,'余额支付35元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1901,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,10000.00,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1902,9624,'2112',0,'购买商品','now_money','pay_product',160.00,88152.66,'余额支付160元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1903,9624,'2113',0,'购买商品','now_money','pay_product',99.00,10000.00,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1904,9624,'2114',0,'购买商品','now_money','pay_product',80.00,9901.00,'余额支付80元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1905,9624,'2115',0,'购买商品','now_money','pay_product',35.00,87992.66,'余额支付35元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1906,9624,'2116',0,'购买商品','now_money','pay_product',35.00,87957.66,'余额支付35元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1907,9624,'2117',0,'购买商品','now_money','pay_product',35.00,87922.66,'余额支付35元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1909,9624,'2118',0,'购买商品','now_money','pay_product',35.00,99770.00,'余额支付35元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1910,9624,'2119',0,'购买商品','now_money','pay_product',35.00,99735.00,'余额支付35元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1911,9624,'2120',0,'购买商品','now_money','pay_product',35.00,99700.00,'余额支付35元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1912,9624,'2121',0,'购买商品','now_money','pay_product',35.00,9821.00,'余额支付35元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1913,9624,'2122',0,'购买商品','now_money','pay_product',60.00,99890.00,'余额支付60元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1914,9624,'2123',0,'购买商品','now_money','pay_product',205.00,87887.66,'余额支付205元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1915,9624,'2124',0,'购买商品','now_money','pay_product',250.00,99830.00,'余额支付250元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1916,9624,'2125',0,'购买商品','now_money','pay_product',1299.00,9786.00,'余额支付1299元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1917,9624,'0',1,'签到奖励','integral','sign',20.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1918,9624,'2128',0,'购买商品','now_money','pay_product',1299.00,8487.00,'余额支付1299元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1919,9624,'2129',0,'购买商品','now_money','pay_product',1010.00,7188.00,'余额支付1010元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1920,9624,'22',0,'余额提现','now_money','extract',16.00,0.00,'使用微信提现16元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1921,9624,'2130',0,'购买商品','now_money','pay_product',1010.00,6178.00,'余额支付1010元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1922,9624,'2131',0,'购买商品','now_money','pay_product',110.00,5168.00,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1923,9624,'2134',0,'购买商品','now_money','pay_product',170.00,980397.54,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1924,9624,'2136',0,'购买商品','now_money','pay_product',109.00,997046.99,'余额支付109元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1925,9624,'2137',0,'购买商品','now_money','pay_product',160.00,996937.99,'余额支付160元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1926,9624,'2138',0,'购买商品','now_money','pay_product',199.00,99650.00,'余额支付199元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1927,9624,'2139',0,'购买商品','now_money','pay_product',99.00,98671.00,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1928,9624,'279',1,'用户余额充值','now_money','recharge',20.00,99451.00,'成功充值余额20元,赠送19.56元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1929,9624,'2140',0,'购买商品','now_money','pay_product',310.00,4167.93,'余额支付310元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1930,9624,'1',1,'系统增加积分','integral','system_add',5000.00,5000.00,'系统增加了5000积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1932,9624,'2141',0,'购买商品','now_money','pay_product',360.00,99490.56,'余额支付360元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1933,9624,'2142',0,'购买商品','now_money','pay_product',0.00,99130.56,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1934,9624,'2143',0,'购买商品','now_money','pay_product',99.00,99130.56,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1935,9624,'2144',0,'购买商品','now_money','pay_product',99.00,99031.56,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1936,9624,'1859',0,'购买商品','now_money','pay_product',115.00,9890.00,'余额支付115元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1937,9624,'2145',0,'购买商品','now_money','pay_product',25.00,9775.00,'余额支付25元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1938,9624,'2145',1,'购买商品赠送积分','integral','gain',45.00,294.00,'购买商品赠送45积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1939,9624,'2146',0,'购买商品','now_money','pay_product',6623.00,996777.99,'余额支付6623元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1940,9624,'2147',0,'购买商品','now_money','pay_product',5520.00,990154.99,'余额支付5520元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1941,9624,'2148',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1942,9624,'2149',0,'购买商品','now_money','pay_product',110.00,984634.99,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1943,9624,'2150',0,'购买商品','now_money','pay_product',105.00,984524.99,'余额支付105元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1950,9624,'2151',0,'购买商品','now_money','pay_product',1108.00,3857.93,'余额支付1108元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1951,9624,'2152',0,'购买商品','now_money','pay_product',7726.00,96677.20,'余额支付7726元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1952,9624,'2153',0,'购买商品','now_money','pay_product',170.00,9750.00,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1953,9624,'2079',1,'购买商品赠送积分','integral','gain',249.00,0.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1954,9624,'2079',1,'获得推广佣金','now_money','brokerage',20.00,6624.29,'焚樊ིྀ成功消费105元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1955,9624,'2079',1,'获得推广佣金','now_money','brokerage',10.00,53.50,'二级推广人焚樊ིྀ成功消费105元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1956,9624,'2156',0,'购买商品','now_money','pay_product',100.00,99665.00,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1957,9624,'2156',1,'购买商品赠送积分','integral','gain',249.00,100000.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1958,9624,'2156',1,'获得推广佣金','now_money','brokerage',20.00,6644.29,'吴汐成功消费100元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1959,9624,'2156',1,'获得推广佣金','now_money','brokerage',10.00,63.50,'二级推广人吴汐成功消费100元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1960,9624,'2157',0,'购买商品','now_money','pay_product',105.00,99565.00,'余额支付105元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1961,9624,'2159',0,'购买商品','now_money','pay_product',110.00,87682.66,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1962,9624,'2160',0,'购买商品','now_money','pay_product',1525.00,87572.66,'余额支付1525元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1963,9624,'2161',0,'购买商品','now_money','pay_product',110.00,86047.66,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1964,9624,'2162',0,'购买商品','now_money','pay_product',70.00,7941.79,'余额支付70元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1965,9624,'2163',0,'购买商品','now_money','pay_product',70.00,85937.66,'余额支付70元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1966,9624,'2163',1,'获得推广佣金','now_money','brokerage',12.00,6656.29,'小小成功消费70元,奖励推广佣金12',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1967,9624,'2163',1,'获得推广佣金','now_money','brokerage',6.00,69.50,'二级推广人小小成功消费70元,奖励推广佣金6',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1968,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1969,9624,'2164',0,'购买商品','now_money','pay_product',108.00,85867.66,'余额支付108元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1970,9624,'1824',1,'购买商品赠送积分','integral','gain',249.00,0.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1971,9624,'1824',1,'获得推广佣金','now_money','brokerage',0.02,6656.31,'小小成功消费10.1元,奖励推广佣金0.02',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1972,9624,'1824',1,'获得推广佣金','now_money','brokerage',0.01,69.51,'二级推广人小小成功消费10.1元,奖励推广佣金0.01',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1973,9624,'1847',1,'购买商品赠送积分','integral','gain',698.00,249.00,'购买商品赠送698积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1974,9624,'1847',1,'获得推广佣金','now_money','brokerage',818.02,7474.33,'小小成功消费4106.4元,奖励推广佣金818.02',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1975,9624,'1847',1,'获得推广佣金','now_money','brokerage',409.01,478.52,'二级推广人小小成功消费4106.4元,奖励推广佣金409.01',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1976,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1977,9624,'2165',0,'购买商品','now_money','pay_product',44.30,85759.66,'余额支付44.3元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1978,9624,'2166',0,'购买商品','now_money','pay_product',44.30,85715.36,'余额支付44.3元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1979,9624,'2167',0,'购买商品','now_money','pay_product',68.80,85671.06,'余额支付68.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1980,9624,'2167',1,'获得推广佣金','now_money','brokerage',12.00,7486.33,'小小成功消费68.8元,奖励推广佣金12',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1981,9624,'2167',1,'获得推广佣金','now_money','brokerage',6.00,484.52,'二级推广人小小成功消费68.8元,奖励推广佣金6',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1983,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-18 15:28:51:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1984,9624,'2168',0,'购买商品','now_money','pay_product',56.40,980227.54,'余额支付56.4元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1985,9624,'2166',1,'购买商品赠送积分','integral','gain',45.00,947.00,'购买商品赠送45积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1986,9624,'2166',1,'获得推广佣金','now_money','brokerage',7.00,7493.33,'小小成功消费44.3元,奖励推广佣金7',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1987,9624,'2166',1,'获得推广佣金','now_money','brokerage',3.50,488.02,'二级推广人小小成功消费44.3元,奖励推广佣金3.5',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1988,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1989,9624,'2169',0,'购买商品','now_money','pay_product',58.80,85602.26,'余额支付58.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1990,9624,'2169',1,'获得推广佣金','now_money','brokerage',12.00,7505.33,'小小成功消费58.8元,奖励推广佣金12',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1991,9624,'2169',1,'获得推广佣金','now_money','brokerage',6.00,494.02,'二级推广人小小成功消费58.8元,奖励推广佣金6',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1992,9624,'2171',0,'购买商品','now_money','pay_product',58.80,85543.46,'余额支付58.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1993,9624,'2171',1,'获得推广佣金','now_money','brokerage',12.00,7517.33,'小小成功消费58.8元,奖励推广佣金12',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1994,9624,'2171',1,'获得推广佣金','now_money','brokerage',6.00,500.02,'二级推广人小小成功消费58.8元,奖励推广佣金6',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1995,9624,'2172',0,'购买商品','now_money','pay_product',34.30,85484.66,'余额支付34.3元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1996,9624,'2173',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1997,9624,'2174',0,'购买商品','now_money','pay_product',60.00,85450.36,'余额支付60元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1998,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-18 21:25:04:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (1999,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-18 22:04:20:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2000,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2001,9624,'2175',0,'购买商品','now_money','pay_product',58.80,85390.36,'余额支付58.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2002,9624,'2176',0,'购买商品','now_money','pay_product',32.90,980171.14,'余额支付32.9元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2003,9624,'2178',0,'购买商品','now_money','pay_product',56.40,88951.20,'余额支付56.4元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2004,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2005,9624,'2179',0,'购买商品','now_money','pay_product',58.80,85331.56,'余额支付58.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2006,9624,'2179',1,'获得推广佣金','now_money','brokerage',12.00,7529.33,'小小成功消费58.8元,奖励推广佣金12',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2007,9624,'2179',1,'获得推广佣金','now_money','brokerage',6.00,506.02,'二级推广人小小成功消费58.8元,奖励推广佣金6',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2011,9624,'1',1,'系统增加余额','now_money','system_add',1000.00,1000.02,'系统增加了1000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2012,9624,'2180',0,'购买商品','now_money','pay_product',50.00,1000.02,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2013,9624,'2181',0,'购买商品','now_money','pay_product',60.00,980138.24,'余额支付60元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2014,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2015,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2016,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2017,9624,'2176',1,'购买商品赠送积分','integral','gain',45.00,4002.00,'购买商品赠送45积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2018,9624,'2176',1,'获得推广佣金','now_money','brokerage',7.00,7536.33,'等风来,随风去成功消费32.9元,奖励推广佣金7',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2019,9624,'2176',1,'获得推广佣金','now_money','brokerage',3.50,509.52,'二级推广人等风来,随风去成功消费32.9元,奖励推广佣金3.5',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2020,9624,'2175',1,'获得推广佣金','now_money','brokerage',12.00,7548.33,'小小成功消费58.8元,奖励推广佣金12',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2021,9624,'2175',1,'获得推广佣金','now_money','brokerage',6.00,515.52,'二级推广人小小成功消费58.8元,奖励推广佣金6',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2022,9624,'5',1,'系统增加余额','now_money','system_add',1000.00,1000.00,'系统增加了1000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2025,9624,'21',1,'提现失败','now_money','extract',100.00,7971.79,'提现失败,退回佣金100.00元',1,'2020-04-14 11:18:45','2020-06-11 10:57:45'), (2027,9624,'3b46746cd7dc604e4b72e6bb9708a891',0,'积分抵扣','integral','deduction',10.00,10.00,'购买商品使用10积分抵扣10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2028,9624,'2192',0,'购买商品','now_money','pay_product',0.10,1000.00,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2029,9624,'2172',1,'购买商品赠送积分','integral','gain',45.00,1037.00,'购买商品赠送45积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2030,9624,'2172',1,'获得推广佣金','now_money','brokerage',7.00,7655.33,'小小成功消费34.3元,奖励推广佣金7',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2031,9624,'2172',1,'获得推广佣金','now_money','brokerage',3.50,519.02,'二级推广人小小成功消费34.3元,奖励推广佣金3.5',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2032,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2033,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2034,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2035,9624,'5',1,'系统增加余额','now_money','system_add',1000.00,1000.00,'系统增加了1000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2036,9624,'2194',0,'购买商品','now_money','pay_product',60.00,1000.00,'余额支付60元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2037,9624,'2196',0,'购买商品','now_money','pay_product',10.10,940.00,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2038,9624,'2197',0,'购买商品','now_money','pay_product',110.00,929.90,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2039,9624,'2198',0,'购买商品','now_money','pay_product',70.00,819.90,'余额支付70元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2040,9624,'2199',0,'购买商品','now_money','pay_product',398.00,749.90,'余额支付398元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2041,9624,'2199',1,'购买商品赠送积分','integral','gain',380.00,390.00,'购买商品赠送380积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2042,9624,'2200',0,'购买商品','now_money','pay_product',10.10,999.90,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2043,9624,'2197',1,'商品退款','now_money','pay_product_refund',110.00,461.90,'订单退款到余额110元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2044,9624,'2199',1,'商品退款','now_money','pay_product_refund',398.00,859.90,'订单退款到余额398元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2045,9624,'2201',0,'购买商品','now_money','pay_product',399.00,989.80,'余额支付399元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2046,9624,'2201',1,'购买商品赠送积分','integral','gain',56.00,56.00,'购买商品赠送56积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2047,9624,'2202',0,'购买商品','now_money','pay_product',235.00,859.90,'余额支付235元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2048,9624,'2202',1,'购买商品赠送积分','integral','gain',265.00,655.00,'购买商品赠送265积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2049,9624,'2202',1,'商品退款','now_money','pay_product_refund',235.00,859.90,'订单退款到余额235元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2050,9624,'2203',0,'购买商品','now_money','pay_product',336.00,859.90,'余额支付336元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2051,9624,'2203',1,'商品退款','now_money','pay_product_refund',336.00,859.90,'订单退款到余额336元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2052,9624,'2204',0,'购买商品','now_money','pay_product',100.00,859.90,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2053,9624,'2204',1,'购买商品赠送积分','integral','gain',568.00,1223.00,'购买商品赠送568积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2054,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2055,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2056,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2057,9624,'289',1,'用户余额充值','now_money','recharge',0.01,0.00,'成功充值余额0.01元,赠送0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2058,9624,'5',1,'系统增加余额','now_money','system_add',1000.00,1000.00,'系统增加了1000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2059,9624,'5',1,'系统增加积分','integral','system_add',999999.99,999999.99,'系统增加了9999999积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2061,9624,'2211',0,'购买商品','now_money','pay_product',245.00,1000.00,'余额支付245元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2062,9624,'5',1,'系统增加余额','now_money','system_add',5000.00,5000.00,'系统增加了5000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2063,9624,'5',1,'系统增加积分','integral','system_add',5000.00,5000.00,'系统增加了5000积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2064,9624,'2139',1,'获得推广佣金','now_money','brokerage',20.00,7675.33,'梁海涛成功消费99元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2065,9624,'2139',1,'获得推广佣金','now_money','brokerage',10.00,529.02,'二级推广人梁海涛成功消费99元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2066,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2067,9624,'5',1,'系统增加余额','now_money','system_add',99999.00,99999.00,'系统增加了99999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2068,9624,'5',1,'系统增加积分','integral','system_add',9999.00,9999.00,'系统增加了9999积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2069,9624,'5',1,'系统增加余额','now_money','system_add',999999.99,999999.99,'系统增加了98999999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2070,9624,'5',1,'系统增加积分','integral','system_add',999999.00,999999.00,'系统增加了999999积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2071,9624,'5',1,'系统增加余额','now_money','system_add',9999.00,9999.00,'系统增加了9999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2072,9624,'5',1,'系统增加积分','integral','system_add',99999.00,99999.00,'系统增加了99999积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2075,9624,'476f408690b545408cc3b8c41497dac0',0,'积分抵扣','integral','deduction',20.00,9999.00,'购买商品使用20积分抵扣20元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2076,9624,'2215',0,'购买商品','now_money','pay_product',0.00,99999.00,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2078,9624,'2216',0,'购买商品','now_money','pay_product',20.00,99999.00,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2079,9624,'2217',1,'购买商品赠送积分','integral','gain',499.00,499.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2080,9624,'2218',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2081,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-20 00:31:35:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2082,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-20 00:34:09:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2083,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-20 00:35:51:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2084,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-20 00:41:14:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2085,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-20 01:51:26:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2086,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2088,9624,'2220',1,'购买商品赠送积分','integral','gain',568.00,10.00,'购买商品赠送568积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2089,9624,'2204',1,'商品退款','now_money','pay_product_refund',100.00,859.90,'订单退款到余额100元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2090,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2091,9624,'5',1,'系统增加余额','now_money','system_add',999999.99,999999.99,'系统增加了999999999999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2092,9624,'2128',1,'购买商品赠送积分','integral','gain',1299.00,1299.00,'购买商品赠送1299积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2093,9624,'2222',0,'购买商品','now_money','pay_product',0.10,85272.76,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2094,9624,'2222',1,'购买商品赠送积分','integral','gain',499.00,1037.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2095,9624,'2222',1,'获得推广佣金','now_money','brokerage',0.02,7675.35,'小小成功消费0.1元,奖励推广佣金0.02',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2096,9624,'2222',1,'获得推广佣金','now_money','brokerage',0.01,529.03,'二级推广人小小成功消费0.1元,奖励推广佣金0.01',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2097,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2098,9624,'2223',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2099,9624,'2223',1,'购买商品赠送积分','integral','gain',56.00,56.00,'购买商品赠送56积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2100,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2101,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2102,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-20 12:04:36:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2103,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2104,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-20 13:38:32:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2105,9624,'2226',1,'购买商品赠送积分','integral','gain',499.00,0.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2106,9624,'5',1,'系统增加余额','now_money','system_add',1000.00,1000.00,'系统增加了1000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2107,9624,'2227',0,'购买商品','now_money','pay_product',0.10,1000.00,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2108,9624,'2227',1,'购买商品赠送积分','integral','gain',499.00,0.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2109,9624,'2228',0,'购买商品','now_money','pay_product',286.00,2749.93,'余额支付286元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2110,9624,'2230',0,'购买商品','now_money','pay_product',0.09,980078.24,'余额支付0.09元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2111,9624,'2231',0,'购买商品','now_money','pay_product',0.10,88894.80,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2112,9624,'2232',0,'购买商品','now_money','pay_product',0.10,792.00,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2115,9624,'2233',0,'购买商品','now_money','pay_product',0.09,980078.15,'余额支付0.09元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2116,9624,'2234',0,'购买商品','now_money','pay_product',220.00,791.90,'余额支付220元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2117,9624,'0',1,'签到奖励','integral','sign',10.00,30.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2118,9624,'2125',1,'购买商品赠送积分','integral','gain',1299.00,2598.00,'购买商品赠送1299积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2119,9624,'2234',1,'商品退款','now_money','pay_product_refund',220.00,791.90,'订单退款到余额220元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2120,9624,'2237',0,'购买商品','now_money','pay_product',1.10,85272.66,'余额支付1.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2121,9624,'2237',1,'商品退款','now_money','pay_product_refund',1.10,85272.66,'订单退款到余额1.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2122,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2123,9624,'2238',0,'购买商品','now_money','pay_product',1.10,7871.79,'余额支付1.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2125,9624,'2238',1,'购买商品赠送积分','integral','gain',999.00,508.99,'购买商品赠送999积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2127,9624,'97e79269b3f2f5ac71cbb94565151493',0,'积分抵扣','integral','deduction',0.10,10.00,'购买商品使用0.1积分抵扣0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2128,9624,'2239',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2129,9624,'2240',0,'购买商品','now_money','pay_product',1.10,791.90,'余额支付1.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2130,9624,'2242',0,'购买商品','now_money','pay_product',1.00,790.80,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2131,9624,'2243',0,'购买商品','now_money','pay_product',1.00,7870.69,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2132,9624,'2244',0,'购买商品','now_money','pay_product',1.00,789.80,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2133,9624,'2245',0,'购买商品','now_money','pay_product',1.00,7869.69,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2134,9624,'2246',0,'购买商品','now_money','pay_product',3048.00,7868.69,'余额支付3048元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2135,9624,'2247',0,'购买商品','now_money','pay_product',7.00,4820.69,'余额支付7元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2136,9624,'2248',0,'购买商品','now_money','pay_product',3.00,85272.66,'余额支付3元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2137,9624,'2248',1,'购买商品赠送积分','integral','gain',1.00,1536.00,'购买商品赠送1积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2138,9624,'2094',1,'商品退款','now_money','pay_product_refund',170.00,9625.00,'订单退款到余额170元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2139,9624,'2246',1,'商品退款','now_money','pay_product_refund',3048.00,7861.69,'订单退款到余额3048元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2140,9624,'2250',0,'购买商品','now_money','pay_product',3.00,85269.66,'余额支付3元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2142,9624,'bd9dd2889abb837ae1c373b313015a0c',0,'积分抵扣','integral','deduction',587.02,6554.00,'购买商品使用587.02积分抵扣587.02元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2143,9624,'2251',0,'购买商品','now_money','pay_product',0.00,984419.99,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2144,9624,'5',1,'系统增加余额','now_money','system_add',99999.00,99999.00,'系统增加了99999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2145,9624,'2253',0,'购买商品','now_money','pay_product',20.00,99999.00,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2146,9624,'2253',1,'购买商品赠送积分','integral','gain',1.00,1.00,'购买商品赠送1积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2147,9624,'2255',0,'购买商品','now_money','pay_product',0.10,99979.00,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2148,9624,'2255',1,'购买商品赠送积分','integral','gain',1099.00,1100.00,'购买商品赠送1099积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2149,9624,'5',1,'系统增加余额','now_money','system_add',88888.00,88888.00,'系统增加了88888余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2150,9624,'2256',0,'购买商品','now_money','pay_product',10.10,88888.00,'余额支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2151,9624,'2257',0,'购买商品','now_money','pay_product',210.00,88877.90,'余额支付210元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2152,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-21 05:04:05:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2153,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-21 07:07:23:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2154,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-21 08:36:59:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2155,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2156,9624,'5',1,'系统增加余额','now_money','system_add',100000.00,100000.00,'系统增加了100000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2157,9624,'5',1,'系统增加余额','now_money','system_add',90000.00,190000.00,'系统增加了90000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2158,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-21 09:38:04:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2159,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-21 09:57:37:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2160,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-21 10:11:56:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2161,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-21 10:12:28:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2162,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2163,9624,'2256',1,'商品退款','now_money','pay_product_refund',10.10,88678.00,'订单退款到余额10.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2164,9624,'2257',1,'购买商品赠送积分','integral','gain',110.00,110.00,'购买商品赠送110积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2165,9624,'2250',1,'商品退款','now_money','pay_product_refund',3.00,85269.66,'订单退款到余额3元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2166,9624,'2258',0,'购买商品','now_money','pay_product',18.00,980078.06,'余额支付18元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2167,9624,'2259',0,'购买商品','now_money','pay_product',180.00,980060.06,'余额支付180元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2168,9624,'5',1,'系统增加余额','now_money','system_add',999999.99,999999.99,'系统增加了1000000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2169,9624,'5',1,'系统增加积分','integral','system_add',999999.99,999999.99,'系统增加了1000000积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2170,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-22 04:44:34:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2171,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-22 04:44:52:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2172,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-22 05:51:35:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2173,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-22 06:34:34:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2174,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-22 06:52:27:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2175,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-22 07:38:52:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2176,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-22 08:24:11:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2177,9624,'2260',0,'购买商品','now_money','pay_product',1.09,7861.69,'余额支付1.09元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2178,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2179,9624,'2261',0,'购买商品','now_money','pay_product',1.00,788.80,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2180,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2181,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2182,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2183,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2184,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-23 03:36:49:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2185,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-23 04:36:49:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2186,9624,'2261',1,'商品退款','now_money','pay_product_refund',1.00,788.80,'订单退款到余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2192,9624,'478617169dfb3a64a5a21cbfc084c2d9',0,'积分抵扣','integral','deduction',1507.99,1507.99,'购买商品使用1507.99积分抵扣15.07元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2193,9624,'2264',0,'购买商品','now_money','pay_product',1225.03,7860.60,'余额支付1225.03元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2194,9624,'5',1,'系统增加余额','now_money','system_add',10000.00,10000.00,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2195,9624,'5',1,'系统增加积分','integral','system_add',10000.00,10000.00,'系统增加了10000积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2196,9624,'2265',0,'购买商品','now_money','pay_product',1.10,6635.57,'余额支付1.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2197,9624,'2266',0,'购买商品','now_money','pay_product',1.20,6634.47,'余额支付1.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2198,9624,'2267',0,'购买商品','now_money','pay_product',1.10,788.80,'余额支付1.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2199,9624,'2269',0,'购买商品','now_money','pay_product',1.10,9890.00,'余额支付1.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2200,9624,'2263',1,'购买商品赠送积分','integral','gain',499.00,499.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2201,9624,'5',1,'系统增加余额','now_money','system_add',9999.00,9999.00,'系统增加了9999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2202,9624,'2270',0,'购买商品','now_money','pay_product',1.10,787.70,'余额支付1.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2203,9624,'2271',0,'购买商品','now_money','pay_product',1.10,9999.00,'余额支付1.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2204,9624,'2272',0,'购买商品','now_money','pay_product',51.00,9997.90,'余额支付51元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2205,9624,'2273',0,'购买商品','now_money','pay_product',399.00,9946.90,'余额支付399元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2206,9624,'2274',0,'购买商品','now_money','pay_product',1300.00,9547.90,'余额支付1300元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2207,9624,'2275',0,'购买商品','now_money','pay_product',1400.00,8247.90,'余额支付1400元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2208,9624,'2276',0,'购买商品','now_money','pay_product',327.00,6847.90,'余额支付327元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2209,9624,'2277',0,'购买商品','now_money','pay_product',1300.00,6520.90,'余额支付1300元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2210,9624,'2278',0,'购买商品','now_money','pay_product',399.00,5220.90,'余额支付399元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2211,9624,'2279',0,'购买商品','now_money','pay_product',51.00,4821.90,'余额支付51元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2212,9624,'2280',0,'购买商品','now_money','pay_product',51.00,4770.90,'余额支付51元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2213,9624,'2281',0,'购买商品','now_money','pay_product',399.00,4719.90,'余额支付399元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2214,9624,'2282',0,'购买商品','now_money','pay_product',399.00,4320.90,'余额支付399元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2215,9624,'2283',0,'购买商品','now_money','pay_product',48.00,88894.70,'余额支付48元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2216,9624,'2284',0,'购买商品','now_money','pay_product',48.00,88846.70,'余额支付48元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2217,9624,'2285',0,'购买商品','now_money','pay_product',10.98,2463.93,'余额支付10.98元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2218,9624,'2285',1,'商品退款','now_money','pay_product_refund',10.98,2463.93,'订单退款到余额10.98元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2219,9624,'2286',0,'购买商品','now_money','pay_product',10.98,2463.93,'余额支付10.98元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2220,9624,'2286',1,'商品退款','now_money','pay_product_refund',10.98,2463.93,'订单退款到余额10.98元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2221,9624,'2287',0,'购买商品','now_money','pay_product',10.98,2463.93,'余额支付10.98元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2222,9624,'2287',1,'商品退款','now_money','pay_product_refund',10.98,2463.93,'订单退款到余额10.98元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2223,9624,'2288',0,'购买商品','now_money','pay_product',11.00,9888.90,'余额支付11元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2224,9624,'2288',1,'商品退款','now_money','pay_product_refund',11.00,9888.90,'订单退款到余额11元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2225,9624,'2289',0,'购买商品','now_money','pay_product',1.09,6633.27,'余额支付1.09元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2226,9624,'2290',0,'购买商品','now_money','pay_product',360.10,6632.18,'余额支付360.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2227,9624,'2290',1,'商品退款','now_money','pay_product_refund',10.00,6282.08,'订单退款到余额10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2228,9624,'5',1,'系统增加余额','now_money','system_add',100.00,100.00,'系统增加了100余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2229,9624,'2291',0,'购买商品','now_money','pay_product',0.10,100.00,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2230,9624,'2292',0,'购买商品','now_money','pay_product',1.00,99.90,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2231,9624,'5',1,'系统增加余额','now_money','system_add',10000.00,10098.90,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2232,9624,'2292',1,'购买商品赠送积分','integral','gain',56.00,56.00,'购买商品赠送56积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2233,9624,'2293',0,'购买商品','now_money','pay_product',1.10,10098.90,'余额支付1.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2234,9624,'2294',0,'购买商品','now_money','pay_product',1400.00,10097.80,'余额支付1400元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2235,9624,'0',1,'签到奖励','integral','sign',10.00,66.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2236,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2237,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2239,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-24 00:17:51:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2240,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-24 00:19:46:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2241,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-24 01:17:58:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2242,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2243,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-24 01:40:06:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2244,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-24 02:12:43:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2245,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-24 05:23:02:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2246,9624,'2309',0,'购买商品','now_money','pay_product',49.00,85269.66,'余额支付49元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2247,9624,'2310',0,'购买商品','now_money','pay_product',0.20,99460.00,'余额支付0.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2248,9624,'2311',0,'购买商品','now_money','pay_product',0.20,9580.00,'余额支付0.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2249,9624,'2311',0,'购买商品','now_money','pay_product',0.20,9580.00,'余额支付0.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2250,9624,'2312',0,'购买商品','now_money','pay_product',160.00,99459.80,'余额支付160元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2251,9624,'2313',0,'购买商品','now_money','pay_product',160.00,99299.80,'余额支付160元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2252,9624,'2314',0,'购买商品','now_money','pay_product',120.00,99139.80,'余额支付120元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2253,9624,'2315',0,'购买商品','now_money','pay_product',160.00,99019.80,'余额支付160元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2254,9624,'2316',0,'购买商品','now_money','pay_product',160.00,9579.80,'余额支付160元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2255,9624,'2317',0,'购买商品','now_money','pay_product',239.00,979880.06,'余额支付239元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2256,9624,'2319',0,'购买商品','now_money','pay_product',239.00,98859.80,'余额支付239元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2257,9624,'2320',0,'购买商品','now_money','pay_product',0.20,98620.80,'余额支付0.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2258,9624,'2321',0,'购买商品','now_money','pay_product',0.20,98620.60,'余额支付0.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2259,9624,'2322',0,'购买商品','now_money','pay_product',0.20,98620.40,'余额支付0.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2260,9624,'2323',0,'购买商品','now_money','pay_product',419.70,98620.20,'余额支付419.7元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2261,9624,'2324',0,'购买商品','now_money','pay_product',0.20,979641.06,'余额支付0.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2262,9624,'2325',0,'购买商品','now_money','pay_product',100.00,98200.50,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2263,9624,'2328',0,'购买商品','now_money','pay_product',0.01,98100.50,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2264,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2265,9624,'2331',0,'购买商品','now_money','pay_product',1371.02,85220.66,'余额支付1371.02元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2266,9624,'2333',0,'购买商品','now_money','pay_product',10.00,98100.49,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2267,9624,'2335',0,'购买商品','now_money','pay_product',10.00,98090.49,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2268,9624,'2336',0,'购买商品','now_money','pay_product',0.20,786.60,'余额支付0.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2269,9624,'2338',0,'购买商品','now_money','pay_product',0.20,98080.49,'余额支付0.2元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2276,9624,'2178',1,'获得推广佣金','now_money','brokerage',12.00,12.00,'怪兽的猫 _成功消费56.4元,奖励推广佣金12',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2277,9624,'2178',1,'获得推广佣金','now_money','brokerage',6.00,6.00,'二级推广人怪兽的猫 _成功消费56.4元,奖励推广佣金6',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2287,9624,'2033',1,'获得推广佣金','now_money','brokerage',60.00,72.00,'怪兽的猫 _成功消费300元,奖励推广佣金60',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2288,9624,'2033',1,'获得推广佣金','now_money','brokerage',30.00,36.00,'二级推广人怪兽的猫 _成功消费300元,奖励推广佣金30',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2313,9624,'2342',0,'购买商品','now_money','pay_product',10.00,786.40,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2314,9624,'2343',0,'购买商品','now_money','pay_product',10.00,776.40,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2315,9624,'2344',0,'购买商品','now_money','pay_product',10.00,88798.70,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2316,9624,'2345',0,'购买商品','now_money','pay_product',50.00,88788.70,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2317,9624,'2345',1,'获得推广佣金','now_money','brokerage',20.00,92.00,'怪兽的猫 _成功消费50元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2318,9624,'2345',1,'获得推广佣金','now_money','brokerage',10.00,46.00,'二级推广人怪兽的猫 _成功消费50元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2328,9624,'2346',0,'购买商品','now_money','pay_product',50.00,88738.70,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2329,9624,'2346',1,'获得推广佣金','now_money','brokerage',20.00,112.00,'怪兽的猫 _成功消费50元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2330,9624,'2346',1,'获得推广佣金','now_money','brokerage',10.00,56.00,'二级推广人怪兽的猫 _成功消费50元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2334,9624,'2347',0,'购买商品','now_money','pay_product',10.00,88688.70,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2335,9624,'2347',1,'获得推广佣金','now_money','brokerage',2.00,114.00,'怪兽的猫 _成功消费10元,奖励推广佣金2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2336,9624,'2347',1,'获得推广佣金','now_money','brokerage',1.00,57.00,'二级推广人怪兽的猫 _成功消费10元,奖励推广佣金1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2349,9624,'2348',0,'购买商品','now_money','pay_product',50.00,88678.70,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2350,9624,'2349',0,'购买商品','now_money','pay_product',50.00,88628.70,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2351,9624,'2350',0,'购买商品','now_money','pay_product',50.00,88578.70,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2352,9624,'2350',1,'获得推广佣金','now_money','brokerage',20.00,134.00,'怪兽的猫 _成功消费50元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2353,9624,'2350',1,'获得推广佣金','now_money','brokerage',10.00,67.00,'二级推广人怪兽的猫 _成功消费50元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2354,9624,'2349',1,'获得推广佣金','now_money','brokerage',20.00,154.00,'怪兽的猫 _成功消费50元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2355,9624,'2349',1,'获得推广佣金','now_money','brokerage',10.00,77.00,'二级推广人怪兽的猫 _成功消费50元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2356,9624,'2348',1,'获得推广佣金','now_money','brokerage',20.00,174.00,'怪兽的猫 _成功消费50元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2357,9624,'2348',1,'获得推广佣金','now_money','brokerage',10.00,87.00,'二级推广人怪兽的猫 _成功消费50元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2361,9624,'2351',0,'购买商品','now_money','pay_product',50.00,88528.70,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2362,9624,'2352',0,'购买商品','now_money','pay_product',50.00,88478.70,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2363,9624,'2352',1,'获得推广佣金','now_money','brokerage',20.00,194.00,'怪兽的猫 _成功消费50元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2364,9624,'2352',1,'获得推广佣金','now_money','brokerage',10.00,97.00,'二级推广人怪兽的猫 _成功消费50元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2365,9624,'2351',1,'获得推广佣金','now_money','brokerage',20.00,214.00,'怪兽的猫 _成功消费50元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2366,9624,'2351',1,'获得推广佣金','now_money','brokerage',10.00,107.00,'二级推广人怪兽的猫 _成功消费50元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2367,9624,'2353',0,'购买商品','now_money','pay_product',10.00,98080.29,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2368,9624,'2353',1,'获得推广佣金','now_money','brokerage',2.00,7677.35,'吴汐成功消费10元,奖励推广佣金2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2369,9624,'2353',1,'获得推广佣金','now_money','brokerage',1.00,530.03,'二级推广人吴汐成功消费10元,奖励推广佣金1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2370,9624,'2354',0,'购买商品','now_money','pay_product',11.00,88428.70,'余额支付11元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2371,9624,'2355',0,'购买商品','now_money','pay_product',10.00,98070.29,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2375,9624,'2355',1,'购买商品赠送积分','integral','gain',1.00,100249.00,'购买商品赠送1积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2376,9624,'2355',1,'获得推广佣金','now_money','brokerage',2.00,7679.35,'吴汐成功消费10元,奖励推广佣金2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2377,9624,'2355',1,'获得推广佣金','now_money','brokerage',1.00,531.03,'二级推广人吴汐成功消费10元,奖励推广佣金1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2381,9624,'2356',0,'购买商品','now_money','pay_product',11.00,98060.29,'余额支付11元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2385,9624,'2356',1,'购买商品赠送积分','integral','gain',11.00,100250.00,'购买商品赠送11积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2386,9624,'2356',1,'获得推广佣金','now_money','brokerage',1.00,7680.35,'吴汐成功消费11元,奖励推广佣金1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2387,9624,'2356',1,'获得推广佣金','now_money','brokerage',1.00,532.03,'二级推广人吴汐成功消费11元,奖励推广佣金1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2388,9624,'2358',0,'购买商品','now_money','pay_product',10.00,766.40,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2389,9624,'2358',1,'购买商品赠送积分','integral','gain',1.00,0.00,'购买商品赠送1积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2393,9624,'2359',0,'购买商品','now_money','pay_product',50.00,88417.70,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2394,9624,'2359',1,'获得推广佣金','now_money','brokerage',20.00,234.00,'怪兽的猫 _成功消费50元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2395,9624,'2359',1,'获得推广佣金','now_money','brokerage',10.00,117.00,'二级推广人怪兽的猫 _成功消费50元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2396,9624,'2240',1,'购买商品赠送积分','integral','gain',999.00,1.00,'购买商品赠送999积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2397,9624,'2360',0,'购买商品','now_money','pay_product',50.00,756.40,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2398,9624,'2361',0,'购买商品','now_money','pay_product',11.00,98049.29,'余额支付11元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2399,9624,'2361',1,'购买商品赠送积分','integral','gain',11.00,100261.00,'购买商品赠送11积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2400,9624,'2361',1,'获得推广佣金','now_money','brokerage',1.00,7681.35,'吴汐成功消费11元,奖励推广佣金1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2401,9624,'2361',1,'获得推广佣金','now_money','brokerage',1.00,533.03,'二级推广人吴汐成功消费11元,奖励推广佣金1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2402,9624,'2343',1,'购买商品赠送积分','integral','gain',1.00,1000.00,'购买商品赠送1积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2403,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2404,9624,'2362',0,'购买商品','now_money','pay_product',10.00,88367.70,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2405,9624,'2363',0,'购买商品','now_money','pay_product',50.00,88357.70,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2406,9624,'2364',0,'购买商品','now_money','pay_product',0.01,88307.70,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2407,9624,'2365',0,'购买商品','now_money','pay_product',199.00,979640.86,'余额支付199元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2427,9624,'2366',0,'购买商品','now_money','pay_product',199.00,6282.08,'余额支付199元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2434,9624,'2363',1,'获得推广佣金','now_money','brokerage',20.00,254.00,'怪兽的猫 _成功消费50元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2435,9624,'2363',1,'获得推广佣金','now_money','brokerage',10.00,127.00,'二级推广人怪兽的猫 _成功消费50元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2447,9624,'2258',1,'购买商品赠送积分','integral','gain',1.00,4002.00,'购买商品赠送1积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2448,9624,'2258',1,'获得推广佣金','now_money','brokerage',10.00,7691.35,'等风来,随风去成功消费18元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2449,9624,'2258',1,'获得推广佣金','now_money','brokerage',5.00,538.03,'二级推广人等风来,随风去成功消费18元,奖励推广佣金5',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2450,9624,'2367',0,'购买商品','now_money','pay_product',0.01,98038.29,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2451,9624,'2367',1,'购买商品赠送积分','integral','gain',499.00,100272.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2452,9624,'2368',0,'购买商品','now_money','pay_product',0.01,98038.28,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2453,9624,'2368',1,'购买商品赠送积分','integral','gain',499.00,100771.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2454,9624,'1',0,'系统减少积分','integral','system_sub',1000.00,998999.99,'系统扣除了1000积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2455,9624,'2231',1,'购买商品赠送积分','integral','gain',499.00,998999.99,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2456,9624,'2231',1,'获得推广佣金','now_money','brokerage',0.02,254.02,'怪兽的猫 _成功消费0.1元,奖励推广佣金0.02',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2457,9624,'2231',1,'获得推广佣金','now_money','brokerage',0.01,127.01,'二级推广人怪兽的猫 _成功消费0.1元,奖励推广佣金0.01',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2458,9624,'2362',1,'购买商品赠送积分','integral','gain',1.00,999498.99,'购买商品赠送1积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2459,9624,'2362',1,'获得推广佣金','now_money','brokerage',2.00,256.02,'怪兽的猫 _成功消费10元,奖励推广佣金2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2460,9624,'2362',1,'获得推广佣金','now_money','brokerage',1.00,128.01,'二级推广人怪兽的猫 _成功消费10元,奖励推广佣金1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2461,9624,'2364',1,'购买商品赠送积分','integral','gain',499.00,999499.99,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2462,9624,'2354',1,'购买商品赠送积分','integral','gain',11.00,999998.99,'购买商品赠送11积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2463,9624,'2354',1,'获得推广佣金','now_money','brokerage',1.00,257.02,'怪兽的猫 _成功消费11元,奖励推广佣金1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2464,9624,'2354',1,'获得推广佣金','now_money','brokerage',1.00,129.01,'二级推广人怪兽的猫 _成功消费11元,奖励推广佣金1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2465,9624,'2302',1,'购买商品赠送积分','integral','gain',499.00,4003.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2481,9624,'2369',0,'购买商品','now_money','pay_product',10.00,88307.69,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2485,9624,'1',0,'系统减少积分','integral','system_sub',10000.00,989999.99,'系统扣除了10000积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2486,9624,'2369',1,'购买商品赠送积分','integral','gain',1.00,989999.99,'购买商品赠送1积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2487,9624,'2369',1,'获得推广佣金','now_money','brokerage',2.00,259.02,'怪兽的猫 _成功消费10元,奖励推广佣金2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2488,9624,'2369',1,'获得推广佣金','now_money','brokerage',1.00,130.01,'二级推广人怪兽的猫 _成功消费10元,奖励推广佣金1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2489,9624,'2344',1,'购买商品赠送积分','integral','gain',1.00,990000.99,'购买商品赠送1积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2490,9624,'2344',1,'获得推广佣金','now_money','brokerage',2.00,261.02,'怪兽的猫 _成功消费10元,奖励推广佣金2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2491,9624,'2344',1,'获得推广佣金','now_money','brokerage',1.00,131.01,'二级推广人怪兽的猫 _成功消费10元,奖励推广佣金1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2492,9624,'2107',1,'购买商品赠送积分','integral','gain',45.00,990001.99,'购买商品赠送45积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2493,9624,'2107',1,'获得推广佣金','now_money','brokerage',7.00,268.02,'怪兽的猫 _成功消费45元,奖励推广佣金7',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2494,9624,'2107',1,'获得推广佣金','now_money','brokerage',3.50,134.51,'二级推广人怪兽的猫 _成功消费45元,奖励推广佣金3.5',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2495,9624,'2034',1,'购买商品赠送积分','integral','gain',100.00,990046.99,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2496,9624,'2034',1,'获得推广佣金','now_money','brokerage',20.00,288.02,'怪兽的猫 _成功消费110元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2497,9624,'2034',1,'获得推广佣金','now_money','brokerage',10.00,144.51,'二级推广人怪兽的猫 _成功消费110元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2498,9624,'2099',1,'获得推广佣金','now_money','brokerage',60.00,348.02,'怪兽的猫 _成功消费310元,奖励推广佣金60',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2499,9624,'2099',1,'获得推广佣金','now_money','brokerage',30.00,174.51,'二级推广人怪兽的猫 _成功消费310元,奖励推广佣金30',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2500,9624,'2035',1,'购买商品赠送积分','integral','gain',100.00,990146.99,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2501,9624,'2035',1,'获得推广佣金','now_money','brokerage',20.00,368.02,'怪兽的猫 _成功消费110元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2502,9624,'2035',1,'获得推广佣金','now_money','brokerage',10.00,184.51,'二级推广人怪兽的猫 _成功消费110元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2504,9624,'0',1,'签到奖励','integral','sign',10.00,4512.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2505,9624,'0',1,'签到奖励','integral','sign',10.00,990256.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2506,9624,'2370',0,'购买商品','now_money','pay_product',50.00,88297.69,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2507,9624,'2371',0,'购买商品','now_money','pay_product',50.00,88247.69,'余额支付50元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2508,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2509,9624,'0',1,'签到奖励','integral','sign',10.00,1011.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2510,9624,'2032',1,'获得推广佣金','now_money','brokerage',60.00,428.02,'怪兽的猫 _成功消费0元,奖励推广佣金60',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2511,9624,'2032',1,'获得推广佣金','now_money','brokerage',30.00,214.51,'二级推广人怪兽的猫 _成功消费0元,奖励推广佣金30',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2512,9624,'2370',1,'获得推广佣金','now_money','brokerage',20.00,448.02,'怪兽的猫 _成功消费50元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2513,9624,'2370',1,'获得推广佣金','now_money','brokerage',10.00,224.51,'二级推广人怪兽的猫 _成功消费50元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2514,9624,'2342',1,'购买商品赠送积分','integral','gain',1.00,1011.00,'购买商品赠送1积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2515,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-25 03:27:25:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2516,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-25 05:09:04:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2517,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-25 06:09:57:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2518,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-25 06:44:52:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2519,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-25 07:19:09:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2520,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-25 08:29:38:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2521,9624,'2374',0,'购买商品','now_money','pay_product',1.00,47.90,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2522,9624,'2375',0,'购买商品','now_money','pay_product',1.00,706.40,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2523,9624,'2376',0,'购买商品','now_money','pay_product',1.00,984419.99,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2524,9624,'2377',0,'购买商品','now_money','pay_product',1.00,705.40,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2525,9624,'2376',1,'获得推广佣金','now_money','brokerage',20.00,7711.35,'徐斗明成功消费1元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2526,9624,'2376',1,'获得推广佣金','now_money','brokerage',10.00,548.03,'二级推广人徐斗明成功消费1元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2527,9624,'2378',0,'购买商品','now_money','pay_product',298.00,9419.80,'余额支付298元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2528,9624,'2378',1,'购买商品赠送积分','integral','gain',380.00,294.00,'购买商品赠送380积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2529,9624,'2378',1,'获得推广佣金','now_money','brokerage',79.60,79.60,'losky成功消费298元,奖励推广佣金79.6',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2530,9624,'2378',1,'获得推广佣金','now_money','brokerage',39.80,487.82,'二级推广人losky成功消费298元,奖励推广佣金39.8',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2531,9624,'2379',0,'购买商品','now_money','pay_product',0.10,984418.99,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2532,9624,'2380',0,'购买商品','now_money','pay_product',979.00,9121.80,'余额支付979元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2533,9624,'2380',1,'购买商品赠送积分','integral','gain',999.00,674.00,'购买商品赠送999积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2534,9624,'2380',1,'获得推广佣金','now_money','brokerage',199.80,279.40,'losky成功消费979元,奖励推广佣金199.8',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2535,9624,'2380',1,'获得推广佣金','now_money','brokerage',99.90,587.72,'二级推广人losky成功消费979元,奖励推广佣金99.9',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2536,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-25 11:14:44:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2537,9624,'0',1,'签到奖励','integral','sign',20.00,4532.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2538,9624,'2383',0,'购买商品','now_money','pay_product',1.00,984418.89,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2539,9624,'2383',1,'获得推广佣金','now_money','brokerage',20.00,7731.35,'徐斗明成功消费1元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2540,9624,'2383',1,'获得推广佣金','now_money','brokerage',10.00,558.03,'二级推广人徐斗明成功消费1元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2541,9624,'0',1,'签到奖励','integral','sign',20.00,1032.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2542,9624,'2384',0,'购买商品','now_money','pay_product',5.00,83849.64,'余额支付5元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2543,9624,'2384',1,'购买商品赠送积分','integral','gain',1.00,1537.00,'购买商品赠送1积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2544,9624,'2385',0,'购买商品','now_money','pay_product',0.01,83844.64,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2545,9624,'2385',1,'购买商品赠送积分','integral','gain',499.00,1538.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2546,9624,'2386',0,'购买商品','now_money','pay_product',1.00,83844.63,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2547,9624,'2387',0,'购买商品','now_money','pay_product',395.00,88197.69,'余额支付395元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2548,9624,'2388',0,'购买商品','now_money','pay_product',1.00,87802.69,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2549,9624,'2242',1,'购买商品赠送积分','integral','gain',380.00,1032.00,'购买商品赠送380积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2550,9624,'2244',1,'购买商品赠送积分','integral','gain',380.00,1412.00,'购买商品赠送380积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2551,9624,'2270',1,'购买商品赠送积分','integral','gain',499.00,1792.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'); INSERT INTO `eb_user_bill` (`id`, `uid`, `link_id`, `pm`, `title`, `category`, `type`, `number`, `balance`, `mark`, `status`, `create_time`, `update_time`) VALUES (2552,9624,'2049',0,'购买商品','now_money','pay_product',170.00,87801.69,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2553,9624,'2389',0,'购买商品','now_money','pay_product',1399.00,83843.63,'余额支付1399元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2554,9624,'2392',0,'购买商品','now_money','pay_product',0.01,979441.86,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2555,9624,'2397',0,'购买商品','now_money','pay_product',110.00,82444.63,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2556,9624,'2398',0,'购买商品','now_money','pay_product',1.00,82334.63,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2557,9624,'2397',1,'获得推广佣金','now_money','brokerage',20.00,7751.35,'小小成功消费110元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2558,9624,'2397',1,'获得推广佣金','now_money','brokerage',10.00,568.03,'二级推广人小小成功消费110元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2559,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-26 03:36:42:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2560,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-26 05:13:22:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2561,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-26 06:27:45:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2562,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-26 08:33:09:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2563,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-26 08:52:53:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2564,9624,'2399',0,'购买商品','now_money','pay_product',1.00,2463.93,'余额支付1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2565,9624,'2400',0,'购买商品','now_money','pay_product',326.00,6083.08,'余额支付326元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2566,9624,'2401',0,'购买商品','now_money','pay_product',226.00,5757.08,'余额支付226元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2567,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-26 09:48:01:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2568,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-26 09:54:25:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2569,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2570,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2571,9624,'2404',0,'购买商品','now_money','pay_product',326.00,82333.63,'余额支付326元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2572,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-26 11:16:27:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2573,9624,'2405',0,'购买商品','now_money','pay_product',326.00,9625.00,'余额支付326元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2574,9624,'2406',0,'购买商品','now_money','pay_product',326.00,2462.93,'余额支付326元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2575,9624,'2407',0,'购买商品','now_money','pay_product',239.00,9299.00,'余额支付239元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2576,9624,'2408',0,'购买商品','now_money','pay_product',80.00,82007.63,'余额支付80元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2577,9624,'314',1,'用户余额充值','now_money','recharge',0.01,8142.80,'成功充值余额0.01元,赠送0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2578,9624,'0',1,'签到奖励','integral','sign',10.00,990266.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2579,9624,'2410',0,'购买商品','now_money','pay_product',0.10,9060.00,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2580,9624,'0',1,'签到奖励','integral','sign',10.00,259.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2581,9624,'2411',0,'购买商品','now_money','pay_product',100.00,9890.00,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2582,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-26 17:58:00:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2583,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-26 18:03:53:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2584,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-26 18:10:37:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2585,9624,'0',1,'签到奖励','integral','sign',10.00,30.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2586,9624,'2412',0,'购买商品','now_money','pay_product',10.00,98038.27,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2587,9624,'2413',0,'购买商品','now_money','pay_product',0.00,98028.27,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2588,9624,'2414',0,'购买商品','now_money','pay_product',102.00,98028.27,'余额支付102元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2589,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-26 20:04:15:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2590,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-27 09:51:48:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2591,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-27 10:27:38:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2592,9624,'2415',0,'购买商品','now_money','pay_product',220.00,3921.90,'余额支付220元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2593,9624,'2416',0,'购买商品','now_money','pay_product',0.01,87631.69,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2594,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-27 15:05:46:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2595,9624,'5',1,'系统增加积分','integral','system_add',3000.00,3000.00,'系统增加了3000积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2597,9624,'5',0,'系统减少积分','integral','system_sub',3000.00,0.00,'系统扣除了3000积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2598,9624,'5',1,'系统增加积分','integral','system_add',1.00,1.00,'系统增加了1积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2599,9624,'5',1,'系统增加积分','integral','system_add',100.00,101.00,'系统增加了100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2600,9624,'5',0,'系统减少积分','integral','system_sub',99.00,2.00,'系统扣除了99积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2601,9624,'5',0,'系统减少积分','integral','system_sub',2.00,0.00,'系统扣除了2积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2602,9624,'5',0,'系统减少积分','integral','system_sub',100.00,0.00,'系统扣除了100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2603,9624,'5',1,'系统增加积分','integral','system_add',289900.00,289900.00,'系统增加了289900积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2605,9624,'5',1,'系统增加积分','integral','system_add',11.00,289911.00,'系统增加了11积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2608,9624,'8ccfac56d021e7cb4e5523156a5e375a',0,'积分抵扣','integral','deduction',289900.00,289911.00,'购买商品使用289900积分抵扣2899元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2609,9624,'2418',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2610,9624,'2418',1,'商品退积分','integral','pay_product_integral_back',289800.00,289811.00,'订单退积分289800积分到用户积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2611,9624,'2418',1,'商品退积分','integral','pay_product_integral_back',100.00,289911.00,'订单退积分100积分到用户积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2612,9624,'2419',0,'购买商品','now_money','pay_product',330.00,81927.63,'余额支付330元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2613,9624,'2421',0,'购买商品','now_money','pay_product',330.00,81597.63,'余额支付330元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2614,9624,'2422',0,'购买商品','now_money','pay_product',220.00,81267.63,'余额支付220元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2615,9624,'2423',0,'购买商品','now_money','pay_product',330.00,81047.63,'余额支付330元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2616,9624,'2424',0,'购买商品','now_money','pay_product',220.00,80717.63,'余额支付220元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2617,9624,'2425',0,'购买商品','now_money','pay_product',0.10,80497.63,'余额支付0.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2618,9624,'2425',1,'购买商品赠送积分','integral','gain',1099.00,2037.00,'购买商品赠送1099积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2619,9624,'2425',1,'获得推广佣金','now_money','brokerage',0.02,7751.37,'小小成功消费0.1元,奖励推广佣金0.02',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2620,9624,'2425',1,'获得推广佣金','now_money','brokerage',0.01,568.04,'二级推广人小小成功消费0.1元,奖励推广佣金0.01',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2621,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-27 16:33:44:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2622,9624,'5',1,'系统增加余额','now_money','system_add',99999.00,103700.90,'系统增加了99999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2623,9624,'2426',0,'购买商品','now_money','pay_product',2899.00,103700.90,'余额支付2899元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2624,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2625,9624,'2427',0,'购买商品','now_money','pay_product',399.00,100801.90,'余额支付399元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2626,9624,'2428',0,'购买商品','now_money','pay_product',1299.00,100402.90,'余额支付1299元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2627,9624,'2429',0,'购买商品','now_money','pay_product',10.00,99103.90,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2628,9624,'2432',0,'购买商品','now_money','pay_product',2899.00,99093.90,'余额支付2899元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2629,9624,'2433',0,'购买商品','now_money','pay_product',398.00,9059.90,'余额支付398元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2630,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2631,9624,'326',1,'用户余额充值','now_money','recharge',0.10,0.00,'成功充值余额0.1元,赠送0.00元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2632,9624,'2435',0,'购买商品','now_money','pay_product',326.00,80497.53,'余额支付326元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2633,9624,'2436',0,'购买商品','now_money','pay_product',2899.00,80171.53,'余额支付2899元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2634,9624,'337',1,'用户余额充值','now_money','recharge',0.01,0.10,'成功充值余额0.01元,赠送0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2635,9624,'338',1,'用户余额充值','now_money','recharge',0.10,0.12,'成功充值余额0.1元,赠送0.00元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2636,9624,'339',1,'用户余额充值','now_money','recharge',0.01,0.00,'成功充值余额0.01元,赠送0.00元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2637,9624,'0',1,'签到奖励','integral','sign',10.00,3146.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2638,9624,'340',1,'用户余额充值','now_money','recharge',0.01,0.01,'成功充值余额0.01元,赠送0.00元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2639,9624,'341',1,'用户余额充值','now_money','recharge',0.01,0.02,'成功充值余额0.01元,赠送0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2640,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-27 19:20:44:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2641,9624,'1',1,'系统增加余额','now_money','system_add',8888.00,8888.00,'系统增加了8888余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2642,9624,'1',0,'系统减少余额','now_money','system_sub',8888.00,0.00,'系统扣除了8888余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2643,9624,'1',1,'系统增加余额','now_money','system_add',8888.00,8888.04,'系统增加了8888余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2644,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,10000.00,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2645,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-27 19:46:41:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2646,9624,'1',1,'系统增加余额','now_money','system_add',99999.00,99999.00,'系统增加了99999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2647,9624,'0',1,'签到奖励','integral','sign',20.00,279.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2648,9624,'346',1,'用户余额充值','now_money','recharge',0.02,0.00,'成功充值余额0.02元,赠送0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2649,9624,'347',1,'用户余额充值','now_money','recharge',0.02,0.03,'成功充值余额0.02元,赠送0.00元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2650,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2651,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-28 00:31:41:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2652,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-28 08:48:53:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2653,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-28 11:01:19:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2654,9624,'353',1,'用户余额充值','now_money','recharge',0.02,984417.89,'成功充值余额0.02元,赠送0.00元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2655,9624,'355',1,'用户余额充值','now_money','recharge',0.02,8888.04,'成功充值余额0.02元,赠送0.00元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2656,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-28 20:50:55:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2657,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2658,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-29 10:56:36:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2659,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2660,9624,'2388',1,'获得推广佣金','now_money','brokerage',20.00,607.72,'怪兽的猫 _成功消费1元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2661,9624,'2388',1,'获得推广佣金','now_money','brokerage',10.00,234.51,'二级推广人怪兽的猫 _成功消费1元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2662,9624,'2387',1,'获得推广佣金','now_money','brokerage',19.80,627.52,'怪兽的猫 _成功消费395元,奖励推广佣金19.8',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2663,9624,'2387',1,'获得推广佣金','now_money','brokerage',9.90,244.41,'二级推广人怪兽的猫 _成功消费395元,奖励推广佣金9.9',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2664,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-29 12:40:39:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2665,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-29 15:03:31:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2666,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-29 15:43:35:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2667,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-29 16:32:25:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2668,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2669,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-29 21:11:13:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2671,9624,'3dbe1714ef47876ea44fa622445dffed',0,'积分抵扣','integral','deduction',10.00,499.00,'购买商品使用10积分抵扣0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2672,9624,'2442',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2673,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-30 00:12:58:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2674,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-30 06:48:35:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2675,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-30 07:10:45:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2676,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-30 07:51:57:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2677,9624,'2443',0,'购买商品','now_money','pay_product',170.00,5531.08,'余额支付170元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2678,9624,'2443',1,'获得推广佣金','now_money','brokerage',20.00,588.04,'路人甲成功消费170元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2679,9624,'2443',1,'获得推广佣金','now_money','brokerage',10.00,10.00,'二级推广人路人甲成功消费170元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2680,9624,'2444',0,'购买商品','now_money','pay_product',130.00,5361.08,'余额支付130元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2681,9624,'2444',1,'获得推广佣金','now_money','brokerage',20.00,608.04,'路人甲成功消费130元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2682,9624,'2444',1,'获得推广佣金','now_money','brokerage',10.00,20.00,'二级推广人路人甲成功消费130元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2683,9624,'2445',0,'购买商品','now_money','pay_product',490.00,5231.08,'余额支付490元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2684,9624,'2445',1,'获得推广佣金','now_money','brokerage',20.00,628.04,'路人甲成功消费490元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2685,9624,'2445',1,'获得推广佣金','now_money','brokerage',10.00,30.00,'二级推广人路人甲成功消费490元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2686,9624,'2446',0,'购买商品','now_money','pay_product',330.00,99999.00,'余额支付330元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2687,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2688,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-30 10:01:41:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2689,9624,'0',1,'签到奖励','integral','sign',10.00,3156.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2693,9624,'f6251a86e09c4bf00d030c7b76f354b6',0,'积分抵扣','integral','deduction',3156.00,3156.00,'购买商品使用3156积分抵扣31.56元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2694,9624,'2447',0,'购买商品','now_money','pay_product',241.84,77272.53,'余额支付241.84元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2695,9624,'2448',0,'购买商品','now_money','pay_product',323.40,77030.69,'余额支付323.4元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2696,9624,'2449',0,'购买商品','now_money','pay_product',0.01,76707.29,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2697,9624,'2450',0,'购买商品','now_money','pay_product',0.90,4741.08,'余额支付0.9元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2698,9624,'2264',1,'购买商品赠送积分','integral','gain',1399.00,10.00,'购买商品赠送1399积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2699,9624,'2264',1,'获得推广佣金','now_money','brokerage',279.80,907.84,'路人甲成功消费1225.03元,奖励推广佣金279.8',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2700,9624,'2264',1,'获得推广佣金','now_money','brokerage',139.90,169.90,'二级推广人路人甲成功消费1225.03元,奖励推广佣金139.9',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2701,9624,'2451',0,'购买商品','now_money','pay_product',0.01,87631.68,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2702,9624,'2452',0,'购买商品','now_money','pay_product',303.40,76707.28,'余额支付303.4元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2703,9624,'2417',1,'购买商品赠送积分','integral','gain',499.00,990266.99,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2704,9624,'2260',1,'购买商品赠送积分','integral','gain',499.00,1409.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2705,9624,'2260',1,'获得推广佣金','now_money','brokerage',0.02,907.86,'路人甲成功消费1.09元,奖励推广佣金0.02',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2706,9624,'2260',1,'获得推广佣金','now_money','brokerage',0.01,169.91,'二级推广人路人甲成功消费1.09元,奖励推广佣金0.01',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2707,9624,'2041',1,'购买商品赠送积分','integral','gain',45.00,1908.00,'购买商品赠送45积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2708,9624,'2416',1,'购买商品赠送积分','integral','gain',499.00,990765.99,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2709,9624,'2398',1,'获得推广佣金','now_money','brokerage',20.00,7771.37,'小小成功消费1元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2710,9624,'2398',1,'获得推广佣金','now_money','brokerage',10.00,917.86,'二级推广人小小成功消费1元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2711,9624,'2386',1,'获得推广佣金','now_money','brokerage',20.00,7791.37,'小小成功消费1元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2712,9624,'2386',1,'获得推广佣金','now_money','brokerage',10.00,927.86,'二级推广人小小成功消费1元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2713,9624,'2452',1,'购买商品赠送积分','integral','gain',330.00,0.00,'购买商品赠送330积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2714,9624,'2452',1,'获得推广佣金','now_money','brokerage',66.00,7857.37,'小小成功消费303.4元,奖励推广佣金66',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2715,9624,'2452',1,'获得推广佣金','now_money','brokerage',33.00,960.86,'二级推广人小小成功消费303.4元,奖励推广佣金33',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2716,9624,'2448',1,'购买商品赠送积分','integral','gain',330.00,330.00,'购买商品赠送330积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2717,9624,'2448',1,'获得推广佣金','now_money','brokerage',66.00,7923.37,'小小成功消费323.4元,奖励推广佣金66',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2718,9624,'2448',1,'获得推广佣金','now_money','brokerage',33.00,993.86,'二级推广人小小成功消费323.4元,奖励推广佣金33',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2719,9624,'2451',1,'购买商品赠送积分','integral','gain',499.00,991264.99,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2720,9624,'2447',1,'购买商品赠送积分','integral','gain',330.00,660.00,'购买商品赠送330积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2721,9624,'2447',1,'获得推广佣金','now_money','brokerage',66.00,7989.37,'小小成功消费241.84元,奖励推广佣金66',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2722,9624,'2447',1,'获得推广佣金','now_money','brokerage',33.00,1026.86,'二级推广人小小成功消费241.84元,奖励推广佣金33',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2723,9624,'2436',1,'购买商品赠送积分','integral','gain',2899.00,990.00,'购买商品赠送2899积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2724,9624,'2424',1,'购买商品赠送积分','integral','gain',100.00,3889.00,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2725,9624,'2424',1,'获得推广佣金','now_money','brokerage',10.00,7999.37,'小小成功消费220元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2726,9624,'2424',1,'获得推广佣金','now_money','brokerage',20.00,1046.86,'二级推广人小小成功消费220元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2727,9624,'2423',1,'购买商品赠送积分','integral','gain',330.00,3989.00,'购买商品赠送330积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2728,9624,'2423',1,'获得推广佣金','now_money','brokerage',66.00,8065.37,'小小成功消费330元,奖励推广佣金66',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2729,9624,'2423',1,'获得推广佣金','now_money','brokerage',33.00,1079.86,'二级推广人小小成功消费330元,奖励推广佣金33',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2730,9624,'2422',1,'购买商品赠送积分','integral','gain',100.00,4319.00,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2731,9624,'2422',1,'获得推广佣金','now_money','brokerage',10.00,8075.37,'小小成功消费220元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2732,9624,'2422',1,'获得推广佣金','now_money','brokerage',20.00,1099.86,'二级推广人小小成功消费220元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2733,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-30 11:53:18:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2734,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2736,9624,'a31875474cbc9782ce14fbc496c2c879',0,'积分抵扣','integral','deduction',1.00,289911.00,'购买商品使用1积分抵扣0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2737,9624,'2453',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2738,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2739,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-30 14:49:18:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2740,9624,'2454',0,'购买商品','now_money','pay_product',0.01,76403.88,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2741,9624,'2454',1,'购买商品赠送积分','integral','gain',499.00,4419.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2742,9624,'2455',0,'购买商品','now_money','pay_product',10.00,76403.87,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2743,9624,'1',1,'系统增加余额','now_money','system_add',2000.00,2000.22,'系统增加了2000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2744,9624,'2456',0,'购买商品','now_money','pay_product',90.00,2000.22,'余额支付90元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2745,9624,'2456',1,'获得推广佣金','now_money','brokerage',20.00,8095.37,'等风来,随风去成功消费90元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2746,9624,'2456',1,'获得推广佣金','now_money','brokerage',10.00,1109.86,'二级推广人等风来,随风去成功消费90元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2747,9624,'2457',0,'购买商品','now_money','pay_product',630.00,1910.22,'余额支付630元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2748,9624,'2457',1,'获得推广佣金','now_money','brokerage',20.00,8115.37,'等风来,随风去成功消费630元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2749,9624,'2457',1,'获得推广佣金','now_money','brokerage',10.00,1119.86,'二级推广人等风来,随风去成功消费630元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2750,9624,'2458',0,'购买商品','now_money','pay_product',630.00,1280.22,'余额支付630元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2751,9624,'363',1,'用户余额充值','now_money','recharge',0.02,8888.06,'成功充值余额0.02元,赠送0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2752,9624,'2459',0,'购买商品','now_money','pay_product',630.00,650.22,'余额支付630元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2753,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,10020.22,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2754,9624,'2460',0,'购买商品','now_money','pay_product',1260.00,10020.22,'余额支付1260元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2755,9624,'2460',1,'获得推广佣金','now_money','brokerage',280.00,8395.37,'等风来,随风去成功消费1260元,奖励推广佣金280',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2756,9624,'2460',1,'获得推广佣金','now_money','brokerage',140.00,1259.86,'二级推广人等风来,随风去成功消费1260元,奖励推广佣金140',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2757,9624,'366',1,'用户余额充值','now_money','recharge',0.02,76393.87,'成功充值余额0.02元,赠送0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2758,9624,'2461',0,'购买商品','now_money','pay_product',90.00,8760.22,'余额支付90元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2759,9624,'2461',1,'获得推广佣金','now_money','brokerage',10.00,8405.37,'等风来,随风去成功消费90元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2760,9624,'2461',1,'获得推广佣金','now_money','brokerage',5.00,1264.86,'二级推广人等风来,随风去成功消费90元,奖励推广佣金5',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2761,9624,'2462',0,'购买商品','now_money','pay_product',900.00,8670.22,'余额支付900元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2762,9624,'2462',1,'获得推广佣金','now_money','brokerage',100.00,8505.37,'等风来,随风去成功消费900元,奖励推广佣金100',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2763,9624,'2462',1,'获得推广佣金','now_money','brokerage',50.00,1314.86,'二级推广人等风来,随风去成功消费900元,奖励推广佣金50',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2764,9624,'23',0,'余额提现','now_money','extract',8500.00,5.37,'使用微信提现8500元',1,'2020-03-14 11:18:45','2020-06-11 10:57:45'), (2765,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,18888.09,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2766,9624,'2463',0,'购买商品','now_money','pay_product',3.00,76393.90,'余额支付3元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2767,9624,'2464',0,'购买商品','now_money','pay_product',398.00,99669.00,'余额支付398元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2768,9624,'2464',1,'购买商品赠送积分','integral','gain',380.00,0.00,'购买商品赠送380积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2769,9624,'2464',1,'获得推广佣金','now_money','brokerage',79.60,79.60,'吴汐成功消费398元,奖励推广佣金79.6',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2770,9624,'2465',0,'购买商品','now_money','pay_product',0.00,704.40,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2771,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2772,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2773,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-31 03:44:50:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2774,9624,'2469',0,'购买商品','now_money','pay_product',99.00,18888.09,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2775,9624,'2110',1,'购买商品赠送积分','integral','gain',45.00,4963.00,'购买商品赠送45积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2776,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-31 10:21:31:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2777,9624,'0',1,'签到奖励','integral','sign',20.00,4983.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2778,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2779,9624,'23',1,'提现失败','now_money','extract',8500.00,13240.18,'提现失败,退回佣金8500.00元',1,'2020-02-14 11:18:45','2020-06-11 10:57:45'), (2780,9624,'2470',0,'购买商品','now_money','pay_product',89.10,96194.90,'余额支付89.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2781,9624,'2471',0,'购买商品','now_money','pay_product',100.00,96105.80,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2782,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2783,9624,'1',1,'系统增加余额','now_money','system_add',1000.00,1000.05,'系统增加了1000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2784,9624,'2472',0,'购买商品','now_money','pay_product',0.01,1000.05,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2785,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2786,9624,'5',1,'系统增加余额','now_money','system_add',999999.99,999999.99,'系统增加了9999999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2787,9624,'5',1,'系统增加余额','now_money','system_add',99999.00,99999.00,'系统增加了99999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2788,9624,'2473',0,'购买商品','now_money','pay_product',2899.00,99999.00,'余额支付2899元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2789,9624,'2473',1,'购买商品赠送积分','integral','gain',2899.00,10.00,'购买商品赠送2899积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2790,9624,'2379',1,'购买商品赠送积分','integral','gain',351.00,5966.98,'购买商品赠送351积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2791,9624,'2040',1,'购买商品赠送积分','integral','gain',45.00,6317.98,'购买商品赠送45积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2792,9624,'2038',1,'购买商品赠送积分','integral','gain',45.00,6362.98,'购买商品赠送45积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2793,9624,'2475',0,'购买商品','now_money','pay_product',1259.10,999999.99,'余额支付1259.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2794,9624,'2475',1,'购买商品赠送积分','integral','gain',1399.00,10.00,'购买商品赠送1399积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2795,9624,'2476',0,'购买商品','now_money','pay_product',1209.10,998740.89,'余额支付1209.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2796,9624,'2476',1,'购买商品赠送积分','integral','gain',1399.00,1409.00,'购买商品赠送1399积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2797,9624,'2476',1,'商品退款','now_money','pay_product_refund',1209.10,998740.89,'订单退款到余额1209.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2798,9624,'2477',0,'购买商品','now_money','pay_product',0.00,998740.89,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2800,9624,'42cc800265bf1e72e13e8e33584f0463',0,'积分抵扣','integral','deduction',4983.00,4983.00,'购买商品使用4983积分抵扣49.83元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2801,9624,'2478',0,'购买商品','now_money','pay_product',320.22,76390.90,'余额支付320.22元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2802,9624,'372',1,'用户余额充值','now_money','recharge',0.02,7770.22,'成功充值余额0.02元,赠送0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2803,9624,'1',1,'系统增加余额','now_money','system_add',99999.00,99999.00,'系统增加了99999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2804,9624,'2479',0,'购买商品','now_money','pay_product',2899.00,99999.00,'余额支付2899元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2805,9624,'2479',1,'购买商品赠送积分','integral','gain',2899.00,0.00,'购买商品赠送2899积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2806,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-03-31 15:44:31:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2807,9624,'1',1,'系统增加余额','now_money','system_add',99999.00,99999.00,'系统增加了99999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2808,9624,'2480',0,'购买商品','now_money','pay_product',2899.00,99999.00,'余额支付2899元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2809,9624,'2480',1,'购买商品赠送积分','integral','gain',2899.00,0.00,'购买商品赠送2899积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2810,9624,'2481',0,'购买商品','now_money','pay_product',100.00,2136.93,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2811,9624,'0',1,'签到奖励','integral','sign',10.00,669.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2812,9624,'2442',1,'购买商品赠送积分','integral','gain',1099.00,1588.00,'购买商品赠送1099积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2813,9624,'2482',0,'购买商品','now_money','pay_product',0.01,76070.68,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2814,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-01 00:32:31:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2815,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-01 00:34:58:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2816,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-01 00:45:00:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2817,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-01 00:56:32:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2818,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-01 01:07:25:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2819,9624,'2483',0,'购买商品','now_money','pay_product',0.01,9790.00,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2820,9624,'2484',0,'购买商品','now_money','pay_product',0.01,9789.99,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2821,9624,'2485',0,'购买商品','now_money','pay_product',196.00,9789.98,'余额支付196元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2822,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,10000.00,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2823,9624,'2486',0,'购买商品','now_money','pay_product',330.00,10000.00,'余额支付330元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2824,9624,'2486',1,'购买商品赠送积分','integral','gain',330.00,0.00,'购买商品赠送330积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2825,9624,'2486',1,'获得推广佣金','now_money','brokerage',66.00,66.00,'losky成功消费330元,奖励推广佣金66',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2826,9624,'2486',1,'获得推广佣金','now_money','brokerage',33.00,8538.37,'二级推广人losky成功消费330元,奖励推广佣金33',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2827,9624,'2486',1,'商品退款','now_money','pay_product_refund',330.00,10000.00,'订单退款到余额330元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2828,9624,'2486',0,'退款退佣金','now_money','brokerage',66.00,0.00,'订单退款扣除佣金66元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2829,9624,'2486',0,'退款退佣金','now_money','brokerage',33.00,8505.37,'订单退款扣除佣金33元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2830,9624,'2487',0,'购买商品','now_money','pay_product',2870.01,10000.00,'余额支付2870.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2831,9624,'2487',1,'购买商品赠送积分','integral','gain',2899.00,330.00,'购买商品赠送2899积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2832,9624,'2487',1,'获得推广佣金','now_money','brokerage',579.80,579.80,'losky成功消费2870.01元,奖励推广佣金579.8',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2833,9624,'2487',1,'获得推广佣金','now_money','brokerage',289.90,8795.27,'二级推广人losky成功消费2870.01元,奖励推广佣金289.9',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2834,9624,'0',0,'用户佣金转入余额','now_money','recharge',100.00,76070.67,'成功转入余额100元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2835,9624,'2490',0,'购买商品','now_money','pay_product',247.00,7770.25,'余额支付247元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2836,9624,'2490',1,'购买商品赠送积分','integral','gain',330.00,4532.00,'购买商品赠送330积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2837,9624,'2490',1,'获得推广佣金','now_money','brokerage',66.00,8861.27,'等风来,随风去成功消费247元,奖励推广佣金66',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2838,9624,'2393',1,'购买商品赠送积分','integral','gain',499.00,4862.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2839,9624,'2491',0,'购买商品','now_money','pay_product',3.00,7523.25,'余额支付3元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2840,9624,'0',1,'签到奖励','integral','sign',10.00,5371.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2841,9624,'0',0,'用户佣金转入余额','now_money','recharge',100.00,4740.18,'成功转入余额100元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2842,9624,'2492',0,'购买商品','now_money','pay_product',1389.10,7520.25,'余额支付1389.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2843,9624,'0',0,'用户佣金转入余额','now_money','recharge',6000.00,4840.18,'成功转入余额6000元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2844,9624,'2493',0,'购买商品','now_money','pay_product',0.00,7129.99,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2845,9624,'2494',0,'购买商品','now_money','pay_product',0.00,7129.99,'余额支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2846,9624,'2495',0,'购买商品','now_money','pay_product',100.00,10840.18,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2847,9624,'2496',0,'购买商品','now_money','pay_product',100.00,6131.15,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2848,9624,'2497',0,'购买商品','now_money','pay_product',0.00,10740.18,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2849,9624,'2482',1,'商品退款','now_money','pay_product_refund',0.01,76170.68,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2850,9624,'2498',0,'购买商品','now_money','pay_product',200.00,6031.15,'余额支付200元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2851,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87631.67,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2852,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87632.67,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2853,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87633.67,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2854,9624,'0',0,'用户佣金转入余额','now_money','recharge',0.10,87634.67,'成功转入余额0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2855,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87634.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2856,9624,'0',0,'用户佣金转入余额','now_money','recharge',2.00,87635.77,'成功转入余额2元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2857,9624,'0',0,'用户佣金转入余额','now_money','recharge',2.00,87637.77,'成功转入余额2元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2858,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87639.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2859,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87640.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2860,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87641.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2861,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87642.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2862,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87643.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2863,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87644.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2864,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87645.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2865,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87646.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2866,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87647.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2867,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87648.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2868,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87649.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2869,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87650.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2870,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87651.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2871,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87652.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2872,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87653.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2873,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87654.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2874,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87655.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2875,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87656.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2876,9624,'0',0,'用户佣金转入余额','now_money','recharge',1.00,87657.77,'成功转入余额1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2877,9624,'2499',0,'购买商品','now_money','pay_product',390.04,7129.99,'余额支付390.04元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2878,9624,'2500',0,'购买商品','now_money','pay_product',319.48,6739.95,'余额支付319.48元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2879,9624,'2500',1,'购买商品赠送积分','integral','gain',351.00,3229.00,'购买商品赠送351积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2880,9624,'2500',1,'获得推广佣金','now_money','brokerage',65.20,545.00,'losky成功消费319.48元,奖励推广佣金65.2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2881,9624,'2500',1,'获得推广佣金','now_money','brokerage',32.60,2793.87,'二级推广人losky成功消费319.48元,奖励推广佣金32.6',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2882,9624,'2499',1,'商品退款','now_money','pay_product_refund',300.04,6720.51,'订单退款到余额300.04元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2883,9624,'2501',0,'购买商品','now_money','pay_product',12.00,10740.18,'余额支付12元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2884,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-02 15:37:22:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2885,9624,'2502',0,'购买商品','now_money','pay_product',160.00,984417.91,'余额支付160元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2886,9624,'2503',0,'购买商品','now_money','pay_product',21.00,76170.68,'余额支付21元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2887,9624,'2504',0,'购买商品','now_money','pay_product',148.00,5831.15,'余额支付148元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2888,9624,'2505',0,'购买商品','now_money','pay_product',100.00,10728.18,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2889,9624,'2506',0,'购买商品','now_money','pay_product',100.00,76149.68,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2890,9624,'2507',0,'购买商品','now_money','pay_product',100.00,10628.18,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2891,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-02 17:13:46:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2892,9624,'2508',0,'购买商品','now_money','pay_product',1259.10,5683.15,'余额支付1259.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2893,9624,'2509',0,'购买商品','now_money','pay_product',2899.00,4424.05,'余额支付2899元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2894,9624,'2510',0,'购买商品','now_money','pay_product',10.00,1525.05,'余额支付10元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2895,9624,'2511',0,'购买商品','now_money','pay_product',20.00,10528.18,'余额支付20元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2896,9624,'375',1,'用户余额充值','now_money','recharge',0.01,1515.05,'成功充值余额0.01元,赠送0.00元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2897,9624,'2512',0,'购买商品','now_money','pay_product',60.00,10508.18,'余额支付60元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2898,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2899,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-03 08:16:26:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2900,9624,'0',1,'签到奖励','integral','sign',10.00,1963.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2901,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-03 10:21:51:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2902,9624,'0',1,'签到奖励','integral','sign',20.00,5391.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2903,9624,'2514',0,'购买商品','now_money','pay_product',160.00,998740.89,'余额支付160元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2904,9624,'2515',0,'购买商品','now_money','pay_product',100.00,998580.89,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2905,9624,'2516',0,'购买商品','now_money','pay_product',0.09,998480.89,'余额支付0.09元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2906,9624,'2517',0,'购买商品','now_money','pay_product',0.01,998480.80,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2907,9624,'2518',0,'购买商品','now_money','pay_product',115.10,998480.79,'余额支付115.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2908,9624,'0',0,'用户佣金转入余额','now_money','recharge',100.00,76049.68,'成功转入余额100元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2909,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2910,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2911,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2912,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-04 08:19:32:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2913,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2914,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2915,9624,'0',1,'签到奖励','integral','sign',10.00,69.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2916,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-04 15:09:09:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2917,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2918,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2919,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-05 04:11:24:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2920,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-05 11:58:47:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2921,9624,'2520',0,'购买商品','now_money','pay_product',90.00,998365.69,'余额支付90元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2922,9624,'0',1,'签到奖励','integral','sign',10.00,2818.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2923,9624,'2521',0,'购买商品','now_money','pay_product',59.00,998275.69,'余额支付59元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2924,9624,'2522',0,'购买商品','now_money','pay_product',849.10,998216.69,'余额支付849.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2925,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2926,9624,'2500',1,'商品退款','now_money','pay_product_refund',319.48,7039.99,'订单退款到余额319.48元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2927,9624,'2500',0,'退款退佣金','now_money','brokerage',65.20,379.80,'订单退款扣除佣金65.2元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2928,9624,'2500',0,'退款退佣金','now_money','brokerage',32.60,2761.27,'订单退款扣除佣金32.6元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2929,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2930,9624,'2525',0,'购买商品','now_money','pay_product',0.01,76149.68,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2931,9624,'2527',0,'购买商品','now_money','pay_product',98.00,8661.90,'余额支付98元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2932,9624,'2528',0,'购买商品','now_money','pay_product',98.00,8563.90,'余额支付98元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2933,9624,'2529',0,'购买商品','now_money','pay_product',98.00,2036.93,'余额支付98元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2934,9624,'2529',1,'购买商品赠送积分','integral','gain',2899.00,669.00,'购买商品赠送2899积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2935,9624,'2529',1,'获得推广佣金','now_money','brokerage',20.00,189.91,'A成功消费98元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2936,9624,'2529',1,'获得推广佣金','now_money','brokerage',10.00,2771.27,'二级推广人A成功消费98元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2937,9624,'2529',1,'商品退款','now_money','pay_product_refund',98.00,2036.93,'订单退款到余额98元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2938,9624,'2529',0,'退款退佣金','now_money','brokerage',20.00,169.91,'订单退款扣除佣金20元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2939,9624,'2529',0,'退款退佣金','now_money','brokerage',10.00,2761.27,'订单退款扣除佣金10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2940,9624,'2530',0,'购买商品','now_money','pay_product',98.00,2036.93,'余额支付98元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2941,9624,'2531',0,'购买商品','now_money','pay_product',390.04,7039.99,'余额支付390.04元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2942,9624,'2531',1,'购买商品赠送积分','integral','gain',380.00,3580.00,'购买商品赠送380积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2943,9624,'2531',1,'获得推广佣金','now_money','brokerage',79.60,79.60,'losky成功消费390.04元,奖励推广佣金79.6',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2944,9624,'2531',1,'获得推广佣金','now_money','brokerage',39.80,1354.66,'二级推广人losky成功消费390.04元,奖励推广佣金39.8',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2945,9624,'25',0,'余额提现','now_money','extract',10.00,69.60,'使用微信提现10元',1,'2020-01-14 11:18:45','2020-06-11 10:57:45'), (2946,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2947,9624,'0',1,'签到奖励','integral','sign',10.00,12.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2948,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2949,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2953,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2954,9624,'2536',0,'购买商品','now_money','pay_product',0.01,1938.93,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2955,9624,'2537',0,'购买商品','now_money','pay_product',98.00,1938.92,'余额支付98元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2956,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2957,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2958,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-10 14:35:29:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2959,9624,'2538',0,'购买商品','now_money','pay_product',100.00,9888.90,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2960,9624,'2540',0,'购买商品','now_money','pay_product',99.00,9788.90,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2961,9624,'2541',0,'购买商品','now_money','pay_product',108.00,1840.92,'余额支付108元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2962,9624,'2541',1,'购买商品赠送积分','integral','gain',2899.00,3568.00,'购买商品赠送2899积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2963,9624,'2541',1,'获得推广佣金','now_money','brokerage',10.00,179.91,'A成功消费108元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2964,9624,'2541',1,'获得推广佣金','now_money','brokerage',5.00,2766.27,'二级推广人A成功消费108元,奖励推广佣金5',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2965,9624,'2541',1,'商品退款','now_money','pay_product_refund',108.00,1840.92,'订单退款到余额108元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2966,9624,'2541',0,'退款退佣金','now_money','brokerage',10.00,169.91,'订单退款扣除佣金10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2967,9624,'2541',0,'退款退佣金','now_money','brokerage',5.00,2761.27,'订单退款扣除佣金5元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2968,9624,'2541',0,'退款扣除积分','integral','gain',2899.00,3568.00,'订单退款扣除积分2899积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2969,9624,'2540',1,'购买商品赠送积分','integral','gain',2899.00,2899.00,'购买商品赠送2899积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2970,9624,'2542',0,'购买商品','now_money','pay_product',99.00,9689.90,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2971,9624,'2542',1,'购买商品赠送积分','integral','gain',2899.00,5798.00,'购买商品赠送2899积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2972,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-10 18:40:27:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2973,9624,'2481',1,'购买商品赠送积分','integral','gain',568.00,3568.00,'购买商品赠送568积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2974,9624,'2481',1,'获得推广佣金','now_money','brokerage',20.00,189.91,'A成功消费100元,奖励推广佣金20',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2975,9624,'2481',1,'获得推广佣金','now_money','brokerage',10.00,2771.27,'二级推广人A成功消费100元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2976,9624,'1722',1,'购买商品赠送积分','integral','gain',249.00,4136.00,'购买商品赠送249积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2977,9624,'2531',1,'商品退款','now_money','pay_product_refund',390.04,7039.99,'订单退款到余额390.04元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2978,9624,'2531',0,'退款退佣金','now_money','brokerage',69.60,0.00,'订单退款扣除佣金69.6元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2979,9624,'2531',0,'退款退佣金','now_money','brokerage',39.80,1314.86,'订单退款扣除佣金39.8元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2980,9624,'2531',0,'退款扣除积分','integral','gain',380.00,3580.00,'订单退款扣除积分380积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2981,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-11 15:26:40:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2987,9624,'1',1,'系统增加余额','now_money','system_add',9999.00,9999.00,'系统增加了9999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2989,9624,'2550',0,'购买商品','now_money','pay_product',100.00,9999.00,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2990,9624,'525',0,'购买商品','now_money','pay_money',100.00,9899.00,'支付100元购买商品',1,'2020-04-14 11:18:45','2020-06-11 11:28:02'), (2991,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2992,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2993,9624,'524',0,'购买商品','now_money','pay_money',0.01,0.00,'支付0.01元购买商品',1,'2020-03-14 11:18:45','2020-06-11 11:28:04'), (2994,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-13 09:30:06:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2995,9624,'2555',0,'购买商品','now_money','pay_product',999.00,99978.90,'余额支付999元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2996,9624,'523',0,'购买商品','now_money','pay_money',999.00,98979.90,'支付999元购买商品',1,'2020-01-14 11:18:45','2020-06-11 11:28:06'), (2997,9624,'2556',0,'购买商品','now_money','pay_product',4949.01,98979.90,'余额支付4949.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (2998,9624,'2556',0,'购买商品','now_money','pay_money',4949.01,94030.89,'支付4949.01元购买商品',1,'2019-12-14 11:18:45','2020-06-11 11:27:15'), (2999,9624,'2557',0,'购买商品','now_money','pay_product',4899.02,94030.89,'余额支付4899.02元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3000,9624,'2557',0,'购买商品','now_money','pay_money',4899.02,89131.87,'支付4899.02元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3001,9624,'2558',0,'购买商品','now_money','pay_product',0.01,1515.06,'余额支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3002,9624,'2558',0,'购买商品','now_money','pay_money',0.01,1515.05,'支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3003,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3004,9624,'2536',1,'商品退款','now_money','pay_product_refund',0.01,1840.93,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3005,9624,'2558',1,'购买商品赠送积分','integral','gain',499.00,5890.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3006,9624,'2558',1,'获得推广佣金','now_money','brokerage',0.01,2771.28,'等风来,随风去成功消费0.01元,奖励推广佣金0.01',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3007,9624,'2559',0,'购买商品','now_money','pay_product',0.98,1840.93,'余额支付0.98元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3008,9624,'2559',0,'购买商品','now_money','pay_money',0.98,1839.95,'支付0.98元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3009,9624,'2559',1,'获得推广佣金','now_money','brokerage',0.20,190.11,'A成功消费0.98元,奖励推广佣金0.2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3010,9624,'2559',1,'获得推广佣金','now_money','brokerage',0.10,2771.38,'二级推广人A成功消费0.98元,奖励推广佣金0.1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3011,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-13 20:46:45:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3012,9624,'2553',1,'购买商品赠送积分','integral','gain',499.00,499.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3013,9624,'2559',1,'商品退款','now_money','pay_product_refund',0.98,1840.93,'订单退款到余额0.98元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3014,9624,'2559',0,'退款退佣金','now_money','brokerage',0.20,189.91,'订单退款扣除佣金0.2元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3015,9624,'2559',0,'退款退佣金','now_money','brokerage',0.10,2771.28,'订单退款扣除佣金0.1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3016,9624,'2558',1,'商品退款','now_money','pay_product_refund',0.01,1515.06,'订单退款到余额0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3017,9624,'2558',0,'退款退佣金','now_money','brokerage',0.01,2771.27,'订单退款扣除佣金0.01元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3018,9624,'2558',0,'退款扣除积分','integral','gain',499.00,5391.00,'订单退款扣除积分499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3019,9624,'2560',0,'购买商品','now_money','pay_product',8.78,1840.93,'余额支付8.78元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3020,9624,'2560',0,'购买商品','now_money','pay_money',8.78,1832.15,'支付8.78元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3021,9624,'2561',0,'购买商品','now_money','pay_product',98.00,1832.15,'余额支付98元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3022,9624,'2561',0,'购买商品','now_money','pay_money',98.00,1734.15,'支付98元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3023,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3025,9624,'2566',0,'购买商品','now_money','pay_product',108.00,1734.15,'余额支付108元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3026,9624,'2566',0,'购买商品','now_money','pay_money',108.00,1626.15,'支付108元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3027,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-15 19:21:34:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3028,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3029,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-15 23:36:08:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3030,9624,'2567',0,'购买商品','now_money','pay_product',98.00,1626.15,'余额支付98元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3031,9624,'2567',0,'购买商品','now_money','pay_money',98.00,1528.15,'支付98元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3032,9624,'2568',0,'购买商品','now_money','pay_product',14.90,1528.15,'余额支付14.9元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3033,9624,'2568',0,'购买商品','now_money','pay_money',14.90,1513.25,'支付14.9元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3034,9624,'2568',1,'商品退款','now_money','pay_product_refund',14.90,1528.15,'订单退款到余额14.9元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3035,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-16 20:12:20:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3036,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-17 00:11:26:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3037,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-17 00:12:09:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3038,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3039,9624,'2571',0,'购买商品','now_money','pay_money',0.01,0.00,'支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3040,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-17 04:00:15:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3041,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-17 04:33:21:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3042,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-17 15:41:05:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3043,9624,'2574',0,'购买商品','now_money','pay_product',104.00,76149.67,'余额支付104元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3044,9624,'2574',0,'购买商品','now_money','pay_money',104.00,76045.67,'支付104元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3045,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-17 23:41:59:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3046,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-18 07:51:38:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3047,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-18 09:00:09:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3048,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-18 10:23:17:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3049,9624,'2575',0,'购买商品','now_money','pay_product',180.00,1515.06,'余额支付180元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3050,9624,'2575',0,'购买商品','now_money','pay_money',180.00,1335.06,'支付180元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3051,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-18 11:18:07:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3052,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,10000.00,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3053,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-18 11:32:14:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3054,9624,'2576',0,'购买商品','now_money','pay_product',12.00,10000.00,'余额支付12元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3055,9624,'2576',0,'购买商品','now_money','pay_money',12.00,9988.00,'支付12元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3056,9624,'2576',1,'获得推广佣金','now_money','brokerage',0.40,0.40,'losky成功消费12元,奖励推广佣金0.4',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3057,9624,'2576',1,'获得推广佣金','now_money','brokerage',0.20,1315.06,'二级推广人losky成功消费12元,奖励推广佣金0.2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3058,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-18 12:54:52:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3059,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-18 13:09:23:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3060,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3061,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-18 15:23:00:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3062,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-18 15:47:45:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3063,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3064,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3065,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-19 04:22:08:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3066,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-19 07:11:10:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3067,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-19 07:43:09:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3068,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-19 09:57:30:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3069,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3070,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-19 11:07:38:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3071,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-19 11:22:24:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3072,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-19 11:54:38:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3073,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3074,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-19 12:06:23:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3075,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-19 13:11:23:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3076,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-19 22:27:32:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3077,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-20 08:59:47:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3078,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-20 09:43:30:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3079,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3080,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3082,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3085,9624,'31a1970b1639d0a9e10dfac5e6289214',0,'积分抵扣','integral','deduction',0.00,10.00,'购买商品使用-3800积分抵扣-38元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3086,9624,'2579',0,'购买商品','now_money','pay_product',0.00,0.00,'微信支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3087,9624,'2579',0,'购买商品','now_money','pay_money',0.00,0.00,'支付0元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3088,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-20 10:48:37:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3089,9624,'1',1,'系统增加余额','now_money','system_add',5000.00,5000.00,'系统增加了5000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3090,9624,'2581',0,'购买商品','now_money','pay_product',160.00,5000.00,'余额支付160元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3091,9624,'2581',0,'购买商品','now_money','pay_money',160.00,4840.00,'支付160元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3092,9624,'2582',0,'购买商品','now_money','pay_product',99.00,4840.00,'余额支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3093,9624,'2582',0,'购买商品','now_money','pay_money',99.00,4741.00,'支付99元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3094,9624,'2582',1,'购买商品赠送积分','integral','gain',2899.00,0.00,'购买商品赠送2899积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3095,9624,'2582',1,'获得推广佣金','now_money','brokerage',10.00,10.00,'吴汐成功消费99元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3096,9624,'2583',0,'购买商品','now_money','pay_product',117.80,4741.00,'余额支付117.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3097,9624,'2583',0,'购买商品','now_money','pay_money',117.80,4623.20,'支付117.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3098,9624,'2583',1,'购买商品赠送积分','integral','gain',100.00,2899.00,'购买商品赠送100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3099,9624,'2583',1,'获得推广佣金','now_money','brokerage',10.00,20.00,'吴汐成功消费117.8元,奖励推广佣金10',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3100,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3101,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-21 09:04:23:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3102,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-21 14:09:22:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3103,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3104,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-21 18:05:55:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3105,9624,'379',1,'用户余额充值','now_money','recharge',0.01,0.00,'成功充值余额0.01元,赠送0.00元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3106,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-22 14:52:01:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3107,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-22 18:00:27:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3108,9624,'2584',0,'购买商品','now_money','pay_money',0.01,1335.06,'支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3109,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3110,9624,'1',1,'系统增加余额','now_money','system_add',10000.00,10000.00,'系统增加了10000余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3111,9624,'2585',0,'购买商品','now_money','pay_product',100.00,10000.00,'余额支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3112,9624,'2585',0,'购买商品','now_money','pay_money',100.00,9900.00,'支付100元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3113,9624,'2585',1,'购买商品赠送积分','integral','gain',2899.00,0.00,'购买商品赠送2899积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3114,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-23 11:10:54:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3115,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3116,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3117,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3118,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-23 20:53:46:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3119,9624,'0',1,'签到奖励','integral','sign',10.00,5401.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3120,9624,'2586',0,'购买商品','now_money','pay_product',11.80,1528.15,'余额支付11.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3121,9624,'2586',0,'购买商品','now_money','pay_money',11.80,1516.35,'支付11.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3122,9624,'2587',0,'购买商品','now_money','pay_product',11.80,1516.35,'余额支付11.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3123,9624,'2587',0,'购买商品','now_money','pay_money',11.80,1504.55,'支付11.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3124,9624,'2586',1,'获得推广佣金','now_money','brokerage',0.40,190.31,'A成功消费11.8元,奖励推广佣金0.4',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3125,9624,'2586',1,'获得推广佣金','now_money','brokerage',0.20,2771.47,'二级推广人A成功消费11.8元,奖励推广佣金0.2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3126,9624,'2588',0,'购买商品','now_money','pay_product',10.90,1504.55,'余额支付10.9元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3127,9624,'2588',0,'购买商品','now_money','pay_money',10.90,1493.65,'支付10.9元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3128,9624,'2588',1,'获得推广佣金','now_money','brokerage',1.00,191.31,'A成功消费10.9元,奖励推广佣金1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3129,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3131,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3132,9624,'2590',0,'购买商品','now_money','pay_product',1.80,10448.18,'余额支付1.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3133,9624,'2590',0,'购买商品','now_money','pay_money',1.80,10446.38,'支付1.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3134,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3135,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-26 15:59:27:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3136,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3137,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-26 17:06:00:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3138,9624,'2590',1,'获得推广佣金','now_money','brokerage',0.40,1315.46,'路人甲成功消费1.8元,奖励推广佣金0.4',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3139,9624,'2590',1,'获得推广佣金','now_money','brokerage',0.20,191.51,'二级推广人路人甲成功消费1.8元,奖励推广佣金0.2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3141,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-27 15:51:21:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3142,9624,'2588',1,'商品退款','now_money','pay_product_refund',10.90,1504.55,'订单退款到余额10.9元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3143,9624,'2588',0,'退款退佣金','now_money','brokerage',1.00,190.51,'订单退款扣除佣金1元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3144,9624,'2583',1,'商品退款','now_money','pay_product_refund',117.80,4741.00,'订单退款到余额117.8元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3145,9624,'2583',0,'退款退佣金','now_money','brokerage',10.00,10.00,'订单退款扣除佣金10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3146,9624,'2583',0,'退款扣除积分','integral','gain',100.00,2899.00,'订单退款扣除积分100积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3147,9624,'0',0,'用户佣金转入余额','now_money','recharge',10.00,1335.06,'成功转入余额10元',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3148,9624,'2591',0,'购买商品','now_money','pay_money',10.10,0.00,'支付10.1元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3149,9624,'2584',1,'购买商品赠送积分','integral','gain',499.00,5900.00,'购买商品赠送499积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3150,9624,'2584',1,'获得推广佣金','now_money','brokerage',0.01,2771.48,'等风来,随风去成功消费0.01元,奖励推广佣金0.01',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3151,9624,'2592',0,'购买商品','now_money','pay_product',11.80,1504.55,'余额支付11.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3152,9624,'2592',0,'购买商品','now_money','pay_money',11.80,1492.75,'支付11.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3153,9624,'2593',0,'购买商品','now_money','pay_product',11.80,1492.75,'余额支付11.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3154,9624,'2593',0,'购买商品','now_money','pay_money',11.80,1480.95,'支付11.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3159,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-29 08:43:04:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3162,9624,'2595',0,'购买商品','now_money','pay_product',11.80,1345.06,'余额支付11.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3163,9624,'2595',0,'购买商品','now_money','pay_money',11.80,1333.26,'支付11.8元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3164,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-29 14:18:27:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3165,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-29 14:44:09:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3166,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-29 15:30:22:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3167,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-29 18:35:11:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3168,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-29 19:35:06:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3169,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-29 23:33:49:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3170,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3171,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-30 11:19:14:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3172,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3173,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-30 13:51:41:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3174,9624,'0',1,'签到奖励','integral','sign',10.00,20.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3175,9624,'1',1,'系统增加余额','now_money','system_add',99999.00,101479.95,'系统增加了99999余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3176,9624,'2599',0,'购买商品','now_money','pay_product',180.00,101479.95,'余额支付180元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3177,9624,'2599',0,'购买商品','now_money','pay_money',180.00,101299.95,'支付180元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3178,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3179,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-30 19:28:28:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3180,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-04-30 21:27:06:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3181,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-01 06:59:52:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3182,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-01 09:00:23:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3183,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-01 10:44:37:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3184,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-01 11:15:59:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3185,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3186,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-01 21:12:16:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3187,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-01 22:07:54:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3188,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-01 23:04:11:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3189,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-01 23:09:42:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3190,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-02 05:04:09:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3191,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-02 05:15:06:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3192,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-02 05:44:04:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3193,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-02 12:40:56:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3194,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-02 17:38:17:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3195,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-02 18:13:05:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3196,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-02 19:11:55:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3197,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-02 20:21:57:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3198,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-03 00:41:19:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3199,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-03 11:58:57:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3200,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-03 17:16:30:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3201,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-03 17:43:58:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3202,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-04 07:30:01:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3203,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-04 09:31:11:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3204,9624,'2604',0,'购买商品','now_money','pay_money',0.01,0.00,'支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3205,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3206,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3207,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-05 02:07:54:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3208,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-05 08:40:02:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3209,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-05 08:45:53:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3210,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-05 15:54:00:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3211,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-05 16:22:07:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3212,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-05 18:34:01:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3213,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3214,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-06 09:57:11:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3215,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-06 12:43:51:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3216,9624,'1',1,'系统增加余额','now_money','system_add',10.00,9910.00,'系统增加了10余额',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3217,9624,'0',1,'签到奖励','integral','sign',10.00,5910.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3218,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-06 16:34:26:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3219,9624,'2607',0,'购买商品','now_money','pay_product',19.00,101299.95,'余额支付19元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3220,9624,'2607',0,'购买商品','now_money','pay_money',19.00,101280.95,'支付19元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3221,9624,'2607',1,'购买商品赠送积分','integral','gain',1.00,4385.00,'购买商品赠送1积分',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3222,9624,'2607',1,'获得推广佣金','now_money','brokerage',2.00,192.51,'A成功消费19元,奖励推广佣金2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3223,9624,'2607',1,'获得推广佣金','now_money','brokerage',1.00,2772.48,'二级推广人A成功消费19元,奖励推广佣金1',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3224,9624,'2608',0,'购买商品','now_money','pay_product',19.00,101280.95,'余额支付19元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3225,9624,'2608',0,'购买商品','now_money','pay_money',19.00,101261.95,'支付19元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3226,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3227,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3228,9624,'2610',0,'购买商品','now_money','pay_product',19.00,101261.95,'余额支付19元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3229,9624,'2610',0,'购买商品','now_money','pay_money',19.00,101242.95,'支付19元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3230,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-07 10:25:52:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3231,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3232,9624,'0',1,'签到奖励','integral','sign',10.00,1973.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3233,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-07 14:18:40:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3234,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3235,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-07 16:37:08:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3236,9624,'2611',0,'购买商品','now_money','pay_product',9.00,10446.38,'余额支付9元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3237,9624,'2611',0,'购买商品','now_money','pay_money',9.00,10437.38,'支付9元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3238,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3239,9624,'2613',0,'购买商品','now_money','pay_money',0.01,0.00,'支付0.01元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3240,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-08 04:47:22:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3241,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-08 15:25:53:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3242,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-08 20:21:36:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3243,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-09 03:58:54:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3244,9624,'2620',0,'购买商品','now_money','pay_product',28.00,1333.26,'余额支付28元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3245,9624,'2620',0,'购买商品','now_money','pay_money',28.00,1305.26,'支付28元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3250,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-09 18:23:03:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3252,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-09 18:36:18:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3253,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-09 22:42:18:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3254,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-10 01:53:45:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3256,9624,'2626',0,'购买商品','now_money','pay_product',110.00,1305.26,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3257,9624,'2626',0,'购买商品','now_money','pay_money',110.00,1195.26,'支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3258,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-10 15:34:16:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3259,9624,'2629',0,'购买商品','now_money','pay_product',110.00,4741.00,'余额支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3260,9624,'2629',0,'购买商品','now_money','pay_money',110.00,4631.00,'支付110元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3261,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-11 04:29:24:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3262,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3263,9624,'0',1,'用户分享记录','share','share',1.00,0.00,'2020-05-11 09:25:30:用户分享',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3264,9624,'0',1,'签到奖励','integral','sign',10.00,10.00,'签到奖励',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3265,9624,'2631',0,'购买商品','now_money','pay_product',11.88,76045.67,'余额支付11.88元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3266,9624,'2631',0,'购买商品','now_money','pay_money',11.88,76033.79,'支付11.88元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3267,9624,'2631',1,'获得推广佣金','now_money','brokerage',0.40,2772.88,'小小成功消费11.88元,奖励推广佣金0.4',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3268,9624,'2631',1,'获得推广佣金','now_money','brokerage',0.20,1315.66,'二级推广人小小成功消费11.88元,奖励推广佣金0.2',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3269,9624,'2632',0,'购买商品','now_money','pay_product',11.88,76033.79,'余额支付11.88元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3270,9624,'2632',0,'购买商品','now_money','pay_money',11.88,76021.91,'支付11.88元购买商品',1,'2020-05-14 11:18:45','2020-06-11 10:57:45'), (3271,9624,'1',0,'系统增加了积分','integral','system_add',10.00,10.00,'系统增加了10积分',1,'2020-05-29 09:15:27','2020-05-29 09:15:27'), (3272,9624,'1',0,'系统增加了余额','experience','system_add',10.00,0.00,'系统增加了10余额',1,'2020-05-29 09:15:27','2020-05-29 09:15:27'), (3273,9624,'1',0,'系统增加了积分','integral','system_add',10.00,20.00,'系统增加了10积分',1,'2020-05-29 09:17:02','2020-05-29 09:17:02'), (3274,9624,'1',0,'系统增加了余额','experience','system_add',10.00,0.00,'系统增加了10余额',1,'2020-05-29 09:17:03','2020-05-29 09:17:03'), (3275,9624,'1',0,'系统增加了积分','integral','system_add',10.00,30.00,'系统增加了10积分',1,'2020-05-29 09:52:34','2020-05-29 09:52:34'), (3276,9624,'1',0,'系统增加了余额','experience','system_add',10.00,0.00,'系统增加了10余额',1,'2020-05-29 09:52:34','2020-05-29 09:52:34'), (3277,9624,'1',0,'系统增加了积分','integral','system_add',10.00,40.00,'系统增加了10积分',1,'2020-05-29 09:53:20','2020-05-29 09:53:20'), (3278,9624,'1',0,'系统增加了余额','experience','system_add',10.00,0.00,'系统增加了10余额',1,'2020-05-29 09:53:20','2020-05-29 09:53:20'), (3279,9624,'1',0,'系统增加了积分','integral','system_add',10.00,50.00,'系统增加了10积分',1,'2020-05-29 09:58:09','2020-05-29 09:58:09'), (3280,9624,'1',0,'系统增加了经验','experience','system_add',10.00,0.00,'系统增加了10经验',1,'2020-01-29 09:58:09','2020-06-08 17:31:59'), (3281,9624,'1',0,'系统增加了积分','integral','system_add',10.00,60.00,'系统增加了10积分',1,'2020-02-29 10:01:31','2020-06-08 17:31:57'), (3282,9624,'1',0,'系统增加了经验','experience','system_add',10.00,0.00,'系统增加了10经验',1,'2020-03-29 10:01:31','2020-06-08 17:31:54'), (3283,9624,'1',0,'系统增加了积分','integral','system_add',10.00,70.00,'系统增加了10积分',1,'2020-04-29 10:07:29','2020-06-08 17:31:52'), (3284,9624,'1',0,'系统增加了经验','experience','system_add',10.00,0.00,'系统增加了10经验',1,'2020-05-29 10:07:29','2020-05-29 10:07:29'), (3285,9624,'0',0,'系统增加了积分','integral','system_add',10.00,80.00,'系统增加了10积分',1,'2020-06-11 15:07:47','2020-06-11 15:07:47'), (3286,9624,'0',0,'系统增加了余额','now_money','system_add',10.00,10.00,'系统增加了10余额',1,'2020-06-11 15:07:47','2020-06-11 15:07:47'), (3287,9624,'0',0,'系统减少了积分','integral','system_sub',1.00,79.00,'系统减少了1积分',1,'2020-06-11 17:20:52','2020-06-11 17:20:52'), (3288,9624,'0',0,'系统减少了余额','now_money','system_sub',1.00,9.00,'系统减少了1余额',1,'2020-06-11 17:20:52','2020-06-11 17:20:52'), (3289,9624,'0',0,'系统减少了积分','integral','system_sub',1.00,78.00,'系统减少了1积分',1,'2020-06-11 17:21:50','2020-06-11 17:21:50'), (3290,9624,'0',0,'系统减少了余额','now_money','system_sub',1.00,8.00,'系统减少了1余额',1,'2020-06-11 17:21:50','2020-06-11 17:21:50'), (3291,9624,'0',0,'系统减少了积分','integral','system_sub',1.00,77.00,'系统减少了1积分',1,'2020-06-11 17:22:04','2020-06-11 17:22:04'), (3292,9624,'0',0,'系统减少了余额','now_money','system_sub',1.00,7.00,'系统减少了1余额',1,'2020-06-11 17:22:04','2020-06-11 17:22:04'), (3293,9624,'0',0,'系统减少了积分','integral','system_sub',2.00,75.00,'系统减少了2积分',1,'2020-06-11 17:25:26','2020-06-11 17:25:26'), (3294,9624,'0',0,'系统减少了余额','now_money','system_sub',2.00,5.00,'系统减少了2余额',1,'2020-06-11 17:25:26','2020-06-11 17:25:26'), (3295,9624,'0',0,'系统减少了积分','integral','system_sub',5.00,70.00,'系统减少了5积分',1,'2020-06-11 17:26:29','2020-06-11 17:26:29'), (3296,9624,'0',0,'系统减少了余额','now_money','system_sub',5.00,0.00,'系统减少了5余额',1,'2020-06-11 17:26:29','2020-06-11 17:26:29'), (3297,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:21:30','2020-07-21 18:21:30'), (3298,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:22:58','2020-07-21 18:22:58'), (3299,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:24:11','2020-07-21 18:24:11'), (3300,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:24:23','2020-07-21 18:24:23'), (3301,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:24:54','2020-07-21 18:24:54'), (3302,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:25:29','2020-07-21 18:25:29'), (3303,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:26:46','2020-07-21 18:26:46'), (3304,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:28:56','2020-07-21 18:28:56'), (3305,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:29:36','2020-07-21 18:29:36'), (3306,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:33:52','2020-07-21 18:33:52'), (3307,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:35:48','2020-07-21 18:35:48'), (3308,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:37:27','2020-07-21 18:37:27'), (3309,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:41:00','2020-07-21 18:41:00'), (3310,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:43:02','2020-07-21 18:43:02'), (3311,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:44:13','2020-07-21 18:44:13'), (3312,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:47:26','2020-07-21 18:47:26'), (3313,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:49:57','2020-07-21 18:49:57'), (3314,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:53:44','2020-07-21 18:53:44'), (3315,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:56:18','2020-07-21 18:56:18'), (3316,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:57:44','2020-07-21 18:57:44'), (3317,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:58:50','2020-07-21 18:58:50'), (3318,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 18:59:58','2020-07-21 18:59:58'), (3319,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:01:28','2020-07-21 19:01:28'), (3320,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:03:04','2020-07-21 19:03:04'), (3321,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:11:11','2020-07-21 19:11:11'), (3322,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:13:37','2020-07-21 19:13:37'), (3323,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:15:40','2020-07-21 19:15:40'), (3324,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:16:23','2020-07-21 19:16:23'), (3325,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:17:29','2020-07-21 19:17:29'), (3326,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:21:42','2020-07-21 19:21:42'), (3327,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:22:42','2020-07-21 19:22:42'), (3328,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:29:40','2020-07-21 19:29:40'), (3329,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:38:36','2020-07-21 19:38:36'), (3330,9624,'576',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0元购买商品',0,'2020-07-21 19:38:54','2020-07-21 19:38:54'), (3331,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:40:08','2020-07-21 19:40:08'), (3332,9624,'577',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0元购买商品',0,'2020-07-21 19:40:18','2020-07-21 19:40:18'), (3333,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:54:08','2020-07-21 19:54:08'), (3334,9624,'578',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0元购买商品',0,'2020-07-21 19:54:18','2020-07-21 19:54:18'), (3335,9624,'578',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0元购买商品',0,'2020-07-21 19:54:34','2020-07-21 19:54:34'), (3336,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:55:18','2020-07-21 19:55:18'), (3337,9624,'579',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0元购买商品',0,'2020-07-21 19:55:19','2020-07-21 19:55:19'), (3338,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:57:07','2020-07-21 19:57:07'), (3339,9624,'580',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0元购买商品',0,'2020-07-21 19:57:08','2020-07-21 19:57:08'), (3340,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-21 19:58:52','2020-07-21 19:58:52'), (3341,9624,'581',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0元购买商品',0,'2020-07-21 19:58:53','2020-07-21 19:58:53'), (3342,9624,'581',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0元购买商品',0,'2020-07-21 19:59:13','2020-07-21 19:59:13'), (3343,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-22 20:52:10','2020-07-22 20:52:10'), (3344,9624,'582',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0元购买商品',0,'2020-07-22 20:52:12','2020-07-22 20:52:12'), (3345,9624,'582',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0元购买商品',0,'2020-07-22 20:52:12','2020-07-22 20:52:12'), (3346,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-22 21:01:59','2020-07-22 21:01:59'), (3347,9624,'583',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0元购买商品',0,'2020-07-22 21:02:00','2020-07-22 21:02:00'), (3348,9624,'583',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0元购买商品',0,'2020-07-22 21:02:01','2020-07-22 21:02:01'), (3349,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-22 21:06:22','2020-07-22 21:06:22'), (3350,9624,'584',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0元购买商品',0,'2020-07-22 21:07:01','2020-07-22 21:07:01'), (3351,9624,'584',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0元购买商品',0,'2020-07-22 21:07:01','2020-07-22 21:07:01'), (3352,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-22 21:08:51','2020-07-22 21:08:51'), (3353,9624,'585',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0元购买商品',0,'2020-07-22 21:10:44','2020-07-22 21:10:44'), (3354,9624,'585',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0元购买商品',0,'2020-07-22 21:10:44','2020-07-22 21:10:44'), (3355,9624,'580',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-23 14:40:07','2020-07-23 14:40:07'), (3356,9624,'580',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-23 14:40:26','2020-07-23 14:40:26'), (3357,9624,'579',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-23 14:46:21','2020-07-23 14:46:21'), (3358,9624,'579',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-23 14:46:29','2020-07-23 14:46:29'), (3359,9624,'578',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-23 14:54:38','2020-07-23 14:54:38'), (3360,9624,'578',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-23 14:54:49','2020-07-23 14:54:49'), (3361,9624,'577',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-23 14:59:50','2020-07-23 14:59:50'), (3362,9624,'577',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-23 14:59:51','2020-07-23 14:59:51'), (3363,9624,'576',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-23 15:02:20','2020-07-23 15:02:20'), (3364,9624,'576',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-23 15:02:20','2020-07-23 15:02:20'), (3365,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-23 16:10:09','2020-07-23 16:10:09'), (3366,9624,'586',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0元购买商品',0,'2020-07-23 16:10:10','2020-07-23 16:10:10'), (3367,9624,'586',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0元购买商品',0,'2020-07-23 16:10:10','2020-07-23 16:10:10'), (3368,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-23 17:35:05','2020-07-23 17:35:05'), (3369,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-23 17:36:10','2020-07-23 17:36:10'), (3370,9624,'588',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0元购买商品',0,'2020-07-23 17:36:32','2020-07-23 17:36:32'), (3371,9624,'588',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0元购买商品',0,'2020-07-23 17:36:33','2020-07-23 17:36:33'), (3372,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-23 17:38:54','2020-07-23 17:38:54'), (3373,9624,'589',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0元购买商品',0,'2020-07-23 17:39:02','2020-07-23 17:39:02'), (3374,9624,'589',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0元购买商品',0,'2020-07-23 17:39:03','2020-07-23 17:39:03'), (3375,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-23 19:25:49','2020-07-23 19:25:49'), (3376,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-23 19:30:20','2020-07-23 19:30:20'), (3377,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-23 19:30:34','2020-07-23 19:30:34'), (3378,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-23 19:34:36','2020-07-23 19:34:36'), (3379,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-23 19:34:42','2020-07-23 19:34:42'), (3380,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-23 19:38:04','2020-07-23 19:38:04'), (3381,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-23 19:38:57','2020-07-23 19:38:57'), (3382,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-23 19:42:53','2020-07-23 19:42:53'), (3383,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-23 19:44:34','2020-07-23 19:44:34'), (3384,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-23 19:45:38','2020-07-23 19:45:38'), (3385,9624,'0',0,'积分抵扣','integral','deduction',0.00,70.00,'购买商品使用0积分抵扣0元',0,'2020-07-24 10:27:33','2020-07-24 10:27:33'), (3386,9624,'601',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-24 10:27:48','2020-07-24 10:27:48'), (3387,9624,'601',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-24 10:27:48','2020-07-24 10:27:48'), (3388,9624,'602',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-24 11:13:54','2020-07-24 11:13:54'), (3389,9624,'602',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-24 11:13:54','2020-07-24 11:13:54'), (3390,9624,'603',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-24 11:20:40','2020-07-24 11:20:40'), (3391,9624,'603',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-24 11:20:40','2020-07-24 11:20:40'), (3392,9624,'604',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-24 11:23:44','2020-07-24 11:23:44'), (3393,9624,'604',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-24 11:23:44','2020-07-24 11:23:44'), (3394,9624,'605',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-24 11:25:29','2020-07-24 11:25:29'), (3395,9624,'605',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-24 11:25:29','2020-07-24 11:25:29'), (3396,9624,'606',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-24 11:27:32','2020-07-24 11:27:32'), (3397,9624,'606',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-24 11:27:32','2020-07-24 11:27:32'), (3398,9624,'607',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-24 11:35:28','2020-07-24 11:35:28'), (3399,9624,'607',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-24 11:35:28','2020-07-24 11:35:28'), (3400,9624,'608',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-24 11:40:39','2020-07-24 11:40:39'), (3401,9624,'608',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-24 11:40:39','2020-07-24 11:40:39'), (3402,9624,'600',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-28 14:51:54','2020-07-28 14:51:54'), (3403,9624,'600',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-28 14:51:54','2020-07-28 14:51:54'), (3404,9624,'599',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-28 14:52:02','2020-07-28 14:52:02'), (3405,9624,'599',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-28 14:52:02','2020-07-28 14:52:02'), (3406,9624,'598',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-28 14:53:51','2020-07-28 14:53:51'), (3407,9624,'598',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-28 14:53:51','2020-07-28 14:53:51'), (3408,9624,'597',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-28 14:54:04','2020-07-28 14:54:04'), (3409,9624,'597',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-28 14:54:04','2020-07-28 14:54:04'), (3410,9624,'0',0,'积分抵扣','integral','deduction',0.00,80.00,'购买商品使用0积分抵扣0元',0,'2020-07-29 09:58:47','2020-07-29 09:58:47'), (3411,9624,'611',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 09:59:19','2020-07-29 09:59:19'), (3412,9624,'611',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 09:59:19','2020-07-29 09:59:19'), (3413,9624,'612',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 10:13:17','2020-07-29 10:13:17'), (3414,9624,'612',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 10:13:17','2020-07-29 10:13:17'), (3415,9624,'613',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 10:13:38','2020-07-29 10:13:38'), (3416,9624,'613',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 10:13:38','2020-07-29 10:13:38'), (3417,9624,'614',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 10:14:07','2020-07-29 10:14:07'), (3418,9624,'614',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 10:14:07','2020-07-29 10:14:07'), (3419,9624,'615',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 10:25:54','2020-07-29 10:25:54'), (3420,9624,'615',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 10:25:54','2020-07-29 10:25:54'), (3421,9624,'616',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 10:26:53','2020-07-29 10:26:53'), (3422,9624,'616',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 10:26:53','2020-07-29 10:26:53'), (3423,9624,'617',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 10:42:01','2020-07-29 10:42:01'), (3424,9624,'617',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 10:42:01','2020-07-29 10:42:01'), (3425,9624,'618',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 10:42:44','2020-07-29 10:42:44'), (3426,9624,'618',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 10:42:44','2020-07-29 10:42:44'), (3427,9624,'619',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 10:48:40','2020-07-29 10:48:40'), (3428,9624,'619',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 10:48:40','2020-07-29 10:48:40'), (3429,9624,'620',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 10:49:43','2020-07-29 10:49:43'), (3430,9624,'620',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 10:49:43','2020-07-29 10:49:43'), (3431,9624,'621',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 10:50:37','2020-07-29 10:50:37'), (3432,9624,'621',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 10:50:37','2020-07-29 10:50:37'), (3433,9624,'622',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 10:56:51','2020-07-29 10:56:51'), (3434,9624,'622',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 10:56:51','2020-07-29 10:56:51'), (3435,9624,'624',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 11:04:34','2020-07-29 11:04:34'), (3436,9624,'624',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 11:04:34','2020-07-29 11:04:34'), (3437,9624,'626',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 11:13:13','2020-07-29 11:13:13'), (3438,9624,'626',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 11:13:13','2020-07-29 11:13:13'), (3439,9624,'628',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 11:33:51','2020-07-29 11:33:51'), (3440,9624,'628',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 11:33:51','2020-07-29 11:33:51'), (3441,9624,'629',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 11:39:23','2020-07-29 11:39:23'), (3442,9624,'629',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 11:39:23','2020-07-29 11:39:23'), (3443,9624,'630',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 11:40:15','2020-07-29 11:40:15'), (3444,9624,'630',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 11:40:15','2020-07-29 11:40:15'), (3445,9624,'631',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 11:42:36','2020-07-29 11:42:36'), (3446,9624,'631',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 11:42:36','2020-07-29 11:42:36'), (3447,9624,'632',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 11:44:42','2020-07-29 11:44:42'), (3448,9624,'632',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 11:44:42','2020-07-29 11:44:42'), (3449,9624,'633',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 11:46:00','2020-07-29 11:46:00'), (3450,9624,'633',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 11:46:00','2020-07-29 11:46:00'), (3451,9624,'634',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 11:48:47','2020-07-29 11:48:47'), (3452,9624,'634',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 11:48:47','2020-07-29 11:48:47'), (3453,9624,'635',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 11:56:51','2020-07-29 11:56:51'), (3454,9624,'635',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 11:56:51','2020-07-29 11:56:51'), (3455,9624,'636',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 14:26:38','2020-07-29 14:26:38'), (3456,9624,'636',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 14:26:38','2020-07-29 14:26:38'), (3457,9624,'0',0,'积分抵扣','integral','deduction',0.00,80.00,'购买商品使用0积分抵扣0元',0,'2020-07-29 14:56:49','2020-07-29 14:56:49'), (3458,9624,'0',0,'积分抵扣','integral','deduction',0.00,80.00,'购买商品使用0积分抵扣0元',0,'2020-07-29 15:02:30','2020-07-29 15:02:30'), (3459,9624,'638',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 15:02:32','2020-07-29 15:02:32'), (3460,9624,'638',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 15:02:57','2020-07-29 15:02:57'), (3461,9624,'623',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 15:44:46','2020-07-29 15:44:46'), (3462,9624,'623',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 15:44:46','2020-07-29 15:44:46'), (3463,9624,'610',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 15:45:57','2020-07-29 15:45:57'), (3464,9624,'610',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 15:45:57','2020-07-29 15:45:57'), (3465,9624,'595',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 15:57:05','2020-07-29 15:57:05'), (3466,9624,'595',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 15:57:05','2020-07-29 15:57:05'), (3467,9624,'609',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 15:57:14','2020-07-29 15:57:14'), (3468,9624,'609',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 15:57:14','2020-07-29 15:57:14'), (3469,9624,'596',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-29 18:32:24','2020-07-29 18:32:24'), (3470,9624,'596',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-29 18:32:24','2020-07-29 18:32:24'), (3471,9624,'0',0,'积分抵扣','integral','deduction',0.00,80.00,'购买商品使用0积分抵扣0元',0,'2020-07-30 10:40:37','2020-07-30 10:40:37'), (3472,9624,'0',0,'积分抵扣','integral','deduction',0.00,80.00,'购买商品使用0积分抵扣0元',0,'2020-07-30 10:45:16','2020-07-30 10:45:16'), (3473,9624,'0',0,'积分抵扣','integral','deduction',0.00,80.00,'购买商品使用0积分抵扣0元',0,'2020-07-30 11:05:56','2020-07-30 11:05:56'), (3474,9624,'641',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-30 11:05:57','2020-07-30 11:05:57'), (3475,9624,'641',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-30 11:05:58','2020-07-30 11:05:58'), (3476,9624,'0',0,'积分抵扣','integral','deduction',0.00,80.00,'购买商品使用0积分抵扣0元',0,'2020-07-30 11:08:46','2020-07-30 11:08:46'), (3477,9624,'0',0,'积分抵扣','integral','deduction',0.00,80.00,'购买商品使用0积分抵扣0元',0,'2020-07-30 11:16:38','2020-07-30 11:16:38'), (3478,9624,'643',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-30 11:46:23','2020-07-30 11:46:23'), (3479,9624,'643',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-30 11:46:23','2020-07-30 11:46:23'), (3480,9624,'644',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-30 11:50:42','2020-07-30 11:50:42'), (3481,9624,'644',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-30 11:50:42','2020-07-30 11:50:42'), (3482,9624,'645',0,'购买商品','nowMoney','pay_product',0.00,999999.99,'余额支付0.00元购买商品',0,'2020-07-30 11:55:11','2020-07-30 11:55:11'), (3483,9624,'645',0,'购买商品','nowMoney','pay_money',0.00,999999.99,'支付0.00元购买商品',0,'2020-07-30 11:55:11','2020-07-30 11:55:11'), (3484,9624,'650',0,'购买商品','nowMoney','pay_product',99.00,999999.99,'余额支付99.00元购买商品',0,'2020-07-30 14:57:04','2020-07-30 14:57:04'), (3485,9624,'650',0,'购买商品','nowMoney','pay_money',99.00,999999.99,'支付99.00元购买商品',0,'2020-07-30 14:57:04','2020-07-30 14:57:04'), (3486,9624,'661',0,'购买商品','nowMoney','pay_product',13000.00,999900.99,'余额支付13000.00元购买商品',0,'2020-07-30 15:29:35','2020-07-30 15:29:35'), (3487,9624,'661',0,'购买商品','nowMoney','pay_money',13000.00,999900.99,'支付13000.00元购买商品',0,'2020-07-30 15:29:35','2020-07-30 15:29:35'), (3488,9624,'662',0,'购买商品','nowMoney','pay_product',1000.00,986900.99,'余额支付1000.00元购买商品',0,'2020-07-30 15:30:54','2020-07-30 15:30:54'), (3489,9624,'662',0,'购买商品','nowMoney','pay_money',1000.00,986900.99,'支付1000.00元购买商品',0,'2020-07-30 15:30:54','2020-07-30 15:30:54'), (3490,9624,'660',0,'购买商品','nowMoney','pay_product',5000.00,985900.99,'余额支付5000.00元购买商品',0,'2020-07-30 15:34:29','2020-07-30 15:34:29'), (3491,9624,'660',0,'购买商品','nowMoney','pay_money',5000.00,985900.99,'支付5000.00元购买商品',0,'2020-07-30 15:34:29','2020-07-30 15:34:29'), (3492,9624,'663',0,'购买商品','nowMoney','pay_product',1000.00,980900.99,'余额支付1000.00元购买商品',0,'2020-07-30 15:35:49','2020-07-30 15:35:49'), (3493,9624,'663',0,'购买商品','nowMoney','pay_money',1000.00,980900.99,'支付1000.00元购买商品',0,'2020-07-30 15:35:49','2020-07-30 15:35:49'), (3494,9624,'659',0,'购买商品','nowMoney','pay_product',400.00,979900.99,'余额支付400.00元购买商品',0,'2020-07-30 15:43:37','2020-07-30 15:43:37'), (3495,9624,'659',0,'购买商品','nowMoney','pay_money',400.00,979900.99,'支付400.00元购买商品',0,'2020-07-30 15:43:37','2020-07-30 15:43:37'), (3496,9624,'658',0,'购买商品','nowMoney','pay_product',200.00,979500.99,'余额支付200.00元购买商品',0,'2020-07-30 15:46:00','2020-07-30 15:46:00'), (3497,9624,'658',0,'购买商品','nowMoney','pay_money',200.00,979500.99,'支付200.00元购买商品',0,'2020-07-30 15:46:00','2020-07-30 15:46:00'), (3498,9624,'657',0,'购买商品','nowMoney','pay_product',400.00,979300.99,'余额支付400.00元购买商品',0,'2020-07-30 15:51:02','2020-07-30 15:51:02'), (3499,9624,'657',0,'购买商品','nowMoney','pay_money',400.00,979300.99,'支付400.00元购买商品',0,'2020-07-30 15:51:02','2020-07-30 15:51:02'), (3500,9624,'656',0,'购买商品','nowMoney','pay_product',400.00,978910.99,'余额支付400.00元购买商品',0,'2020-07-30 20:19:47','2020-07-30 20:19:47'), (3501,9624,'656',0,'购买商品','nowMoney','pay_money',400.00,978910.99,'支付400.00元购买商品',0,'2020-07-30 20:19:47','2020-07-30 20:19:47'), (3502,9624,'664',0,'购买商品','nowMoney','pay_product',77.00,978540.99,'余额支付77.00元购买商品',0,'2020-07-31 14:40:22','2020-07-31 14:40:22'), (3503,9624,'664',0,'购买商品','nowMoney','pay_money',77.00,978540.99,'支付77.00元购买商品',0,'2020-07-31 14:40:22','2020-07-31 14:40:22'), (3504,9624,'665',0,'购买商品','nowMoney','pay_product',77.00,978463.99,'余额支付77.00元购买商品',0,'2020-07-31 15:00:58','2020-07-31 15:00:58'), (3505,9624,'665',0,'购买商品','nowMoney','pay_money',77.00,978463.99,'支付77.00元购买商品',0,'2020-07-31 15:00:58','2020-07-31 15:00:58'), (3506,9624,'666',0,'购买商品','nowMoney','pay_product',77.00,978386.99,'余额支付77.00元购买商品',0,'2020-07-31 15:02:01','2020-07-31 15:02:01'), (3507,9624,'666',0,'购买商品','nowMoney','pay_money',77.00,978386.99,'支付77.00元购买商品',0,'2020-07-31 15:02:01','2020-07-31 15:02:01'), (3508,9624,'667',0,'购买商品','nowMoney','pay_product',77.00,978309.99,'余额支付77.00元购买商品',0,'2020-07-31 15:04:31','2020-07-31 15:04:31'), (3509,9624,'667',0,'购买商品','nowMoney','pay_money',77.00,978309.99,'支付77.00元购买商品',0,'2020-07-31 15:04:31','2020-07-31 15:04:31'), (3510,9624,'668',0,'购买商品','nowMoney','pay_product',77.00,978232.99,'余额支付77.00元购买商品',0,'2020-07-31 15:05:22','2020-07-31 15:05:22'), (3511,9624,'668',0,'购买商品','nowMoney','pay_money',77.00,978232.99,'支付77.00元购买商品',0,'2020-07-31 15:05:22','2020-07-31 15:05:22'), (3512,9624,'669',0,'购买商品','nowMoney','pay_product',77.00,978155.99,'余额支付77.00元购买商品',0,'2020-07-31 15:06:17','2020-07-31 15:06:17'), (3513,9624,'669',0,'购买商品','nowMoney','pay_money',77.00,978155.99,'支付77.00元购买商品',0,'2020-07-31 15:06:17','2020-07-31 15:06:17'), (3514,9624,'670',0,'购买商品','nowMoney','pay_product',77.00,978078.99,'余额支付77.00元购买商品',0,'2020-07-31 15:06:32','2020-07-31 15:06:32'), (3515,9624,'670',0,'购买商品','nowMoney','pay_money',77.00,978078.99,'支付77.00元购买商品',0,'2020-07-31 15:06:32','2020-07-31 15:06:32'), (3516,9624,'671',0,'购买商品','nowMoney','pay_product',77.00,978001.99,'余额支付77.00元购买商品',0,'2020-07-31 15:07:06','2020-07-31 15:07:06'), (3517,9624,'671',0,'购买商品','nowMoney','pay_money',77.00,978001.99,'支付77.00元购买商品',0,'2020-07-31 15:07:06','2020-07-31 15:07:06'), (3518,9624,'672',0,'购买商品','nowMoney','pay_product',77.00,977924.99,'余额支付77.00元购买商品',0,'2020-07-31 15:08:27','2020-07-31 15:08:27'), (3519,9624,'672',0,'购买商品','nowMoney','pay_money',77.00,977924.99,'支付77.00元购买商品',0,'2020-07-31 15:08:27','2020-07-31 15:08:27'), (3520,9624,'673',0,'购买商品','nowMoney','pay_product',77.00,977847.99,'余额支付77.00元购买商品',0,'2020-07-31 15:13:24','2020-07-31 15:13:24'), (3521,9624,'673',0,'购买商品','nowMoney','pay_money',77.00,977847.99,'支付77.00元购买商品',0,'2020-07-31 15:13:24','2020-07-31 15:13:24'), (3522,9624,'674',0,'购买商品','nowMoney','pay_product',0.00,977770.99,'余额支付0.00元购买商品',0,'2020-07-31 15:50:15','2020-07-31 15:50:15'), (3523,9624,'674',0,'购买商品','nowMoney','pay_money',0.00,977770.99,'支付0.00元购买商品',0,'2020-07-31 15:50:15','2020-07-31 15:50:15'), (3524,9624,'675',0,'购买商品','nowMoney','pay_product',0.00,977770.99,'余额支付0.00元购买商品',0,'2020-07-31 15:50:52','2020-07-31 15:50:52'), (3525,9624,'675',0,'购买商品','nowMoney','pay_money',0.00,977770.99,'支付0.00元购买商品',0,'2020-07-31 15:50:52','2020-07-31 15:50:52'), (3526,9624,'676',0,'购买商品','nowMoney','pay_product',0.00,977770.99,'余额支付0.00元购买商品',0,'2020-07-31 15:51:36','2020-07-31 15:51:36'), (3527,9624,'676',0,'购买商品','nowMoney','pay_money',0.00,977770.99,'支付0.00元购买商品',0,'2020-07-31 15:51:36','2020-07-31 15:51:36'), (3528,9624,'677',0,'购买商品','nowMoney','pay_product',77.00,977770.99,'余额支付77.00元购买商品',0,'2020-07-31 16:07:12','2020-07-31 16:07:12'), (3529,9624,'677',0,'购买商品','nowMoney','pay_money',77.00,977770.99,'支付77.00元购买商品',0,'2020-07-31 16:07:12','2020-07-31 16:07:12'), (3530,9624,'679',0,'购买商品','nowMoney','pay_product',231.00,977693.99,'余额支付231.00元购买商品',0,'2020-07-31 18:00:54','2020-07-31 18:00:54'), (3531,9624,'679',0,'购买商品','nowMoney','pay_money',231.00,977693.99,'支付231.00元购买商品',0,'2020-07-31 18:00:54','2020-07-31 18:00:54'), (3532,9624,'686',0,'购买商品','nowMoney','pay_product',1.00,977462.99,'余额支付1.00元购买商品',0,'2020-08-01 17:11:35','2020-08-01 17:11:35'), (3533,9624,'686',0,'购买商品','nowMoney','pay_money',1.00,977462.99,'支付1.00元购买商品',0,'2020-08-01 17:11:35','2020-08-01 17:11:35'), (3534,9624,'688',0,'购买商品','nowMoney','pay_product',1.00,977461.99,'余额支付1.00元购买商品',0,'2020-08-01 17:39:56','2020-08-01 17:39:56'), (3535,9624,'688',0,'购买商品','nowMoney','pay_money',1.00,977461.99,'支付1.00元购买商品',0,'2020-08-01 17:39:57','2020-08-01 17:39:57'), (3536,9624,'689',0,'购买商品','nowMoney','pay_product',0.00,977460.99,'余额支付0.00元购买商品',0,'2020-08-01 17:45:26','2020-08-01 17:45:26'), (3537,9624,'689',0,'购买商品','nowMoney','pay_money',0.00,977460.99,'支付0.00元购买商品',0,'2020-08-01 17:45:26','2020-08-01 17:45:26'), (3538,9624,'690',0,'购买商品','nowMoney','pay_product',0.00,977460.99,'余额支付0.00元购买商品',0,'2020-08-01 17:54:44','2020-08-01 17:54:44'), (3539,9624,'690',0,'购买商品','nowMoney','pay_money',0.00,977460.99,'支付0.00元购买商品',0,'2020-08-01 17:54:44','2020-08-01 17:54:44'), (3540,9624,'691',0,'购买商品','nowMoney','pay_product',77.00,977460.99,'余额支付77.00元购买商品',0,'2020-08-01 18:09:25','2020-08-01 18:09:25'), (3541,9624,'691',0,'购买商品','nowMoney','pay_money',77.00,977460.99,'支付77.00元购买商品',0,'2020-08-01 18:09:25','2020-08-01 18:09:25'), (3542,9624,'692',0,'购买商品','nowMoney','pay_product',77.00,977383.99,'余额支付77.00元购买商品',0,'2020-08-01 18:09:45','2020-08-01 18:09:45'), (3543,9624,'692',0,'购买商品','nowMoney','pay_money',77.00,977383.99,'支付77.00元购买商品',0,'2020-08-01 18:09:45','2020-08-01 18:09:45'), (3544,9624,'693',0,'购买商品','nowMoney','pay_product',77.00,977306.99,'余额支付77.00元购买商品',0,'2020-08-01 18:11:28','2020-08-01 18:11:28'), (3545,9624,'693',0,'购买商品','nowMoney','pay_money',77.00,977306.99,'支付77.00元购买商品',0,'2020-08-01 18:11:28','2020-08-01 18:11:28'), (3546,9624,'694',0,'购买商品','nowMoney','pay_product',77.00,977229.99,'余额支付77.00元购买商品',0,'2020-08-01 18:16:48','2020-08-01 18:16:48'), (3547,9624,'694',0,'购买商品','nowMoney','pay_money',77.00,977229.99,'支付77.00元购买商品',0,'2020-08-01 18:16:48','2020-08-01 18:16:48'), (3548,9624,'695',0,'购买商品','nowMoney','pay_product',77.00,977152.99,'余额支付77.00元购买商品',0,'2020-08-01 18:18:24','2020-08-01 18:18:24'), (3549,9624,'695',0,'购买商品','nowMoney','pay_money',77.00,977152.99,'支付77.00元购买商品',0,'2020-08-01 18:18:24','2020-08-01 18:18:24'), (3550,9624,'696',0,'购买商品','nowMoney','pay_product',77.00,977075.99,'余额支付77.00元购买商品',0,'2020-08-01 18:21:04','2020-08-01 18:21:04'), (3551,9624,'696',0,'购买商品','nowMoney','pay_money',77.00,977075.99,'支付77.00元购买商品',0,'2020-08-01 18:21:04','2020-08-01 18:21:04'), (3552,9624,'697',0,'购买商品','nowMoney','pay_product',77.00,976998.99,'余额支付77.00元购买商品',0,'2020-08-01 18:21:42','2020-08-01 18:21:42'), (3553,9624,'697',0,'购买商品','nowMoney','pay_money',77.00,976998.99,'支付77.00元购买商品',0,'2020-08-01 18:21:42','2020-08-01 18:21:42'), (3554,9624,'698',0,'购买商品','nowMoney','pay_product',77.00,976921.99,'余额支付77.00元购买商品',0,'2020-08-01 18:22:14','2020-08-01 18:22:14'), (3555,9624,'698',0,'购买商品','nowMoney','pay_money',77.00,976921.99,'支付77.00元购买商品',0,'2020-08-01 18:22:14','2020-08-01 18:22:14'), (3556,9624,'699',0,'购买商品','nowMoney','pay_product',77.00,976844.99,'余额支付77.00元购买商品',0,'2020-08-01 18:22:53','2020-08-01 18:22:53'), (3557,9624,'699',0,'购买商品','nowMoney','pay_money',77.00,976844.99,'支付77.00元购买商品',0,'2020-08-01 18:22:53','2020-08-01 18:22:53'), (3558,9624,'700',0,'购买商品','nowMoney','pay_product',77.00,976767.99,'余额支付77.00元购买商品',0,'2020-08-01 18:23:28','2020-08-01 18:23:28'), (3559,9624,'700',0,'购买商品','nowMoney','pay_money',77.00,976767.99,'支付77.00元购买商品',0,'2020-08-01 18:23:28','2020-08-01 18:23:28'), (3560,9624,'701',0,'购买商品','nowMoney','pay_product',77.00,976690.99,'余额支付77.00元购买商品',0,'2020-08-01 18:25:11','2020-08-01 18:25:11'), (3561,9624,'701',0,'购买商品','nowMoney','pay_money',77.00,976690.99,'支付77.00元购买商品',0,'2020-08-01 18:25:11','2020-08-01 18:25:11'), (3562,9624,'702',0,'购买商品','nowMoney','pay_product',77.00,976613.99,'余额支付77.00元购买商品',0,'2020-08-01 18:29:01','2020-08-01 18:29:01'), (3563,9624,'702',0,'购买商品','nowMoney','pay_money',77.00,976613.99,'支付77.00元购买商品',0,'2020-08-01 18:29:01','2020-08-01 18:29:01'), (3564,9624,'703',0,'购买商品','nowMoney','pay_product',77.00,976536.99,'余额支付77.00元购买商品',0,'2020-08-01 18:30:08','2020-08-01 18:30:08'), (3565,9624,'703',0,'购买商品','nowMoney','pay_money',77.00,976536.99,'支付77.00元购买商品',0,'2020-08-01 18:30:08','2020-08-01 18:30:08'), (3566,9624,'704',0,'购买商品','nowMoney','pay_product',77.00,976459.99,'余额支付77.00元购买商品',0,'2020-08-01 18:33:52','2020-08-01 18:33:52'), (3567,9624,'704',0,'购买商品','nowMoney','pay_money',77.00,976459.99,'支付77.00元购买商品',0,'2020-08-01 18:33:52','2020-08-01 18:33:52'), (3568,9624,'705',0,'购买商品','nowMoney','pay_product',77.00,976382.99,'余额支付77.00元购买商品',0,'2020-08-01 18:34:51','2020-08-01 18:34:51'), (3569,9624,'705',0,'购买商品','nowMoney','pay_money',77.00,976382.99,'支付77.00元购买商品',0,'2020-08-01 18:34:51','2020-08-01 18:34:51'), (3570,9624,'706',0,'购买商品','nowMoney','pay_product',77.00,976305.99,'余额支付77.00元购买商品',0,'2020-08-01 18:36:28','2020-08-01 18:36:28'), (3571,9624,'706',0,'购买商品','nowMoney','pay_money',77.00,976305.99,'支付77.00元购买商品',0,'2020-08-01 18:36:28','2020-08-01 18:36:28'), (3572,9624,'707',0,'购买商品','nowMoney','pay_product',77.00,976228.99,'余额支付77.00元购买商品',0,'2020-08-01 18:37:19','2020-08-01 18:37:19'), (3573,9624,'707',0,'购买商品','nowMoney','pay_money',77.00,976228.99,'支付77.00元购买商品',0,'2020-08-01 18:37:19','2020-08-01 18:37:19'), (3574,9624,'708',0,'购买商品','nowMoney','pay_product',77.00,976151.99,'余额支付77.00元购买商品',0,'2020-08-01 18:39:09','2020-08-01 18:39:09'), (3575,9624,'708',0,'购买商品','nowMoney','pay_money',77.00,976151.99,'支付77.00元购买商品',0,'2020-08-01 18:39:09','2020-08-01 18:39:09'), (3576,9624,'709',0,'购买商品','nowMoney','pay_product',77.00,976074.99,'余额支付77.00元购买商品',0,'2020-08-01 18:41:08','2020-08-01 18:41:08'), (3577,9624,'709',0,'购买商品','nowMoney','pay_money',77.00,976074.99,'支付77.00元购买商品',0,'2020-08-01 18:41:08','2020-08-01 18:41:08'), (3578,9624,'710',0,'购买商品','nowMoney','pay_product',77.00,975997.99,'余额支付77.00元购买商品',0,'2020-08-01 18:42:25','2020-08-01 18:42:25'), (3579,9624,'710',0,'购买商品','nowMoney','pay_money',77.00,975997.99,'支付77.00元购买商品',0,'2020-08-01 18:42:25','2020-08-01 18:42:25'), (3580,9624,'711',0,'购买商品','nowMoney','pay_product',77.00,975920.99,'余额支付77.00元购买商品',0,'2020-08-01 18:46:55','2020-08-01 18:46:55'), (3581,9624,'711',0,'购买商品','nowMoney','pay_money',77.00,975920.99,'支付77.00元购买商品',0,'2020-08-01 18:46:55','2020-08-01 18:46:55'), (3582,9624,'712',0,'购买商品','nowMoney','pay_product',77.00,975843.99,'余额支付77.00元购买商品',0,'2020-08-01 18:47:42','2020-08-01 18:47:42'), (3583,9624,'712',0,'购买商品','nowMoney','pay_money',77.00,975843.99,'支付77.00元购买商品',0,'2020-08-01 18:47:42','2020-08-01 18:47:42'), (3584,9624,'713',0,'购买商品','nowMoney','pay_product',77.00,975766.99,'余额支付77.00元购买商品',0,'2020-08-01 18:48:57','2020-08-01 18:48:57'), (3585,9624,'713',0,'购买商品','nowMoney','pay_money',77.00,975766.99,'支付77.00元购买商品',0,'2020-08-01 18:48:57','2020-08-01 18:48:57'), (3586,9624,'714',0,'购买商品','nowMoney','pay_product',77.00,975689.99,'余额支付77.00元购买商品',0,'2020-08-03 12:12:38','2020-08-03 12:12:38'), (3587,9624,'714',0,'购买商品','nowMoney','pay_money',77.00,975689.99,'支付77.00元购买商品',0,'2020-08-03 12:12:38','2020-08-03 12:12:38'), (3588,9624,'715',0,'购买商品','nowMoney','pay_product',78.00,975612.99,'余额支付78.00元购买商品',0,'2020-08-04 14:33:28','2020-08-04 14:33:28'), (3589,9624,'715',0,'购买商品','nowMoney','pay_money',78.00,975612.99,'支付78.00元购买商品',0,'2020-08-04 14:33:28','2020-08-04 14:33:28'), (3590,9624,'716',0,'购买商品','nowMoney','pay_product',154.00,975534.99,'余额支付154.00元购买商品',0,'2020-08-04 14:44:20','2020-08-04 14:44:20'), (3591,9624,'716',0,'购买商品','nowMoney','pay_money',154.00,975534.99,'支付154.00元购买商品',0,'2020-08-04 14:44:20','2020-08-04 14:44:20'), (3592,9624,'717',0,'购买商品','nowMoney','pay_product',231.00,975439.99,'余额支付231.00元购买商品',0,'2020-08-05 16:47:39','2020-08-05 16:47:39'), (3593,9624,'717',0,'购买商品','nowMoney','pay_money',231.00,975439.99,'支付231.00元购买商品',0,'2020-08-05 16:47:39','2020-08-05 16:47:39'), (3594,9624,'718',0,'购买商品','nowMoney','pay_product',385.00,975208.99,'余额支付385.00元购买商品',0,'2020-08-05 17:02:00','2020-08-05 17:02:00'), (3595,9624,'718',0,'购买商品','nowMoney','pay_money',385.00,975208.99,'支付385.00元购买商品',0,'2020-08-05 17:02:00','2020-08-05 17:02:00'), (3596,9624,'719',0,'购买商品','nowMoney','pay_product',77.00,974823.99,'余额支付77.00元购买商品',0,'2020-08-05 17:08:48','2020-08-05 17:08:48'), (3597,9624,'719',0,'购买商品','nowMoney','pay_money',77.00,974823.99,'支付77.00元购买商品',0,'2020-08-05 17:08:48','2020-08-05 17:08:48'), (3598,9624,'720',0,'购买商品','nowMoney','pay_product',77.00,974746.99,'余额支付77.00元购买商品',0,'2020-08-05 17:12:05','2020-08-05 17:12:05'), (3599,9624,'720',0,'购买商品','nowMoney','pay_money',77.00,974746.99,'支付77.00元购买商品',0,'2020-08-05 17:12:05','2020-08-05 17:12:05'), (3600,9624,'725',0,'购买商品','nowMoney','pay_product',66.00,974669.99,'余额支付66.00元购买商品',0,'2020-08-05 17:36:30','2020-08-05 17:36:30'), (3601,9624,'725',0,'购买商品','nowMoney','pay_money',66.00,974669.99,'支付66.00元购买商品',0,'2020-08-05 17:36:30','2020-08-05 17:36:30'), (3602,9624,'726',0,'购买商品','nowMoney','pay_product',77.00,974603.99,'余额支付77.00元购买商品',0,'2020-08-06 10:51:52','2020-08-06 10:51:52'), (3603,9624,'726',0,'购买商品','nowMoney','pay_money',77.00,974603.99,'支付77.00元购买商品',0,'2020-08-06 10:51:52','2020-08-06 10:51:52'), (3604,9624,'727',0,'购买商品','nowMoney','pay_product',77.00,974526.99,'余额支付77.00元购买商品',0,'2020-08-06 11:40:00','2020-08-06 11:40:00'), (3605,9624,'727',0,'购买商品','nowMoney','pay_money',77.00,974526.99,'支付77.00元购买商品',0,'2020-08-06 11:40:00','2020-08-06 11:40:00'), (3606,9624,'728',0,'购买商品','nowMoney','pay_product',0.00,974449.99,'余额支付0.00元购买商品',0,'2020-08-06 11:42:30','2020-08-06 11:42:30'), (3607,9624,'728',0,'购买商品','nowMoney','pay_money',0.00,974449.99,'支付0.00元购买商品',0,'2020-08-06 11:42:30','2020-08-06 11:42:30'), (3608,9624,'729',0,'购买商品','nowMoney','pay_product',77.00,974449.99,'余额支付77.00元购买商品',0,'2020-08-06 11:43:20','2020-08-06 11:43:20'), (3609,9624,'729',0,'购买商品','nowMoney','pay_money',77.00,974449.99,'支付77.00元购买商品',0,'2020-08-06 11:43:20','2020-08-06 11:43:20'), (3610,9624,'730',0,'购买商品','nowMoney','pay_product',77.00,974372.99,'余额支付77.00元购买商品',0,'2020-08-06 11:44:15','2020-08-06 11:44:15'), (3611,9624,'730',0,'购买商品','nowMoney','pay_money',77.00,974372.99,'支付77.00元购买商品',0,'2020-08-06 11:44:15','2020-08-06 11:44:15'), (3612,9624,'731',0,'购买商品','nowMoney','pay_product',0.00,974295.99,'余额支付0.00元购买商品',0,'2020-08-06 12:04:18','2020-08-06 12:04:18'), (3613,9624,'731',0,'购买商品','nowMoney','pay_money',0.00,974295.99,'支付0.00元购买商品',0,'2020-08-06 12:04:18','2020-08-06 12:04:18'), (3614,9624,'732',0,'购买商品','nowMoney','pay_product',0.00,974295.99,'余额支付0.00元购买商品',0,'2020-08-07 09:40:57','2020-08-07 09:40:57'), (3615,9624,'732',0,'购买商品','nowMoney','pay_money',0.00,974295.99,'支付0.00元购买商品',0,'2020-08-07 09:40:57','2020-08-07 09:40:57'), (3616,9624,'723',0,'购买商品','nowMoney','pay_product',77.00,974295.99,'余额支付77.00元购买商品',0,'2020-08-10 15:45:05','2020-08-10 15:45:05'), (3617,9624,'723',0,'购买商品','nowMoney','pay_money',77.00,974295.99,'支付77.00元购买商品',0,'2020-08-10 15:45:05','2020-08-10 15:45:05'), (3618,9624,'722',0,'购买商品','nowMoney','pay_product',77.00,974218.99,'余额支付77.00元购买商品',0,'2020-08-10 15:45:47','2020-08-10 15:45:47'), (3619,9624,'722',0,'购买商品','nowMoney','pay_money',77.00,974218.99,'支付77.00元购买商品',0,'2020-08-10 15:45:47','2020-08-10 15:45:47'), (3620,9624,'739',0,'购买商品','nowMoney','pay_product',0.10,974141.99,'余额支付0.10元购买商品',0,'2020-08-10 16:41:35','2020-08-10 16:41:35'), (3621,9624,'739',0,'购买商品','nowMoney','pay_money',0.10,974141.99,'支付0.10元购买商品',0,'2020-08-10 16:41:35','2020-08-10 16:41:35'), (3622,9624,'747',0,'购买商品','nowMoney','pay_product',0.10,974141.89,'余额支付0.10元购买商品',0,'2020-08-10 17:33:08','2020-08-10 17:33:08'), (3623,9624,'747',0,'购买商品','nowMoney','pay_money',0.10,974141.89,'支付0.10元购买商品',0,'2020-08-10 17:33:08','2020-08-10 17:33:08'), (3624,9642,'0',1,'充值支付','now_money','pay_success',0.11,0.33,'充值支付增加了0.11',0,'2020-08-10 17:59:45','2020-08-10 18:01:24'), (3625,9624,'767',0,'购买商品','nowMoney','pay_product',0.10,974141.79,'余额支付0.10元购买商品',0,'2020-08-10 22:02:15','2020-08-10 22:02:15'), (3626,9624,'767',0,'购买商品','nowMoney','pay_money',0.10,974141.79,'支付0.10元购买商品',0,'2020-08-10 22:02:15','2020-08-10 22:02:15'), (3627,9624,'768',0,'购买商品','nowMoney','pay_product',900.00,974141.69,'余额支付900.00元购买商品',0,'2020-08-10 22:10:42','2020-08-10 22:10:42'), (3628,9624,'768',0,'购买商品','nowMoney','pay_money',900.00,974141.69,'支付900.00元购买商品',0,'2020-08-10 22:10:42','2020-08-10 22:10:42'), (3629,9624,'769',0,'购买商品','nowMoney','pay_product',900.00,973241.69,'余额支付900.00元购买商品',0,'2020-08-10 22:12:18','2020-08-10 22:12:18'), (3630,9624,'769',0,'购买商品','nowMoney','pay_money',900.00,973241.69,'支付900.00元购买商品',0,'2020-08-10 22:12:18','2020-08-10 22:12:18'), (3631,9624,'770',0,'购买商品','nowMoney','pay_product',0.10,972341.69,'余额支付0.10元购买商品',0,'2020-08-10 22:13:20','2020-08-10 22:13:20'), (3632,9624,'770',0,'购买商品','nowMoney','pay_money',0.10,972341.69,'支付0.10元购买商品',0,'2020-08-10 22:13:20','2020-08-10 22:13:20'), (3633,9624,'771',0,'购买商品','nowMoney','pay_product',0.20,972341.59,'余额支付0.20元购买商品',0,'2020-08-10 22:14:40','2020-08-10 22:14:40'), (3634,9624,'771',0,'购买商品','nowMoney','pay_money',0.20,972341.59,'支付0.20元购买商品',0,'2020-08-10 22:14:40','2020-08-10 22:14:40'), (3635,9624,'772',0,'购买商品','nowMoney','pay_product',0.10,972341.39,'余额支付0.10元购买商品',0,'2020-08-10 22:17:12','2020-08-10 22:17:12'), (3636,9624,'772',0,'购买商品','nowMoney','pay_money',0.10,972341.39,'支付0.10元购买商品',0,'2020-08-10 22:17:12','2020-08-10 22:17:12'), (3637,9624,'781',0,'购买商品','nowMoney','pay_product',0.40,972341.29,'余额支付0.40元购买商品',0,'2020-08-11 10:03:55','2020-08-11 10:03:55'), (3638,9624,'781',0,'购买商品','nowMoney','pay_money',0.40,972341.29,'支付0.40元购买商品',0,'2020-08-11 10:03:55','2020-08-11 10:03:55'), (3639,9624,'803',0,'购买商品','nowMoney','pay_product',0.10,972340.89,'余额支付0.10元购买商品',0,'2020-08-11 12:07:04','2020-08-11 12:07:04'), (3640,9624,'803',0,'购买商品','nowMoney','pay_money',0.10,972340.89,'支付0.10元购买商品',0,'2020-08-11 12:07:04','2020-08-11 12:07:04'), (3641,9624,'843',0,'购买商品','nowMoney','pay_product',0.10,972340.79,'余额支付0.10元购买商品',0,'2020-08-11 16:06:37','2020-08-11 16:06:37'), (3642,9624,'843',0,'购买商品','nowMoney','pay_money',0.10,972340.79,'支付0.10元购买商品',0,'2020-08-11 16:06:37','2020-08-11 16:06:37'), (3643,9624,'844',0,'购买商品','nowMoney','pay_product',0.10,972340.69,'余额支付0.10元购买商品',0,'2020-08-11 16:08:16','2020-08-11 16:08:16'), (3644,9624,'844',0,'购买商品','nowMoney','pay_money',0.10,972340.69,'支付0.10元购买商品',0,'2020-08-11 16:08:16','2020-08-11 16:08:16'), (3645,9624,'845',0,'购买商品','nowMoney','pay_product',0.10,972340.59,'余额支付0.10元购买商品',0,'2020-08-11 16:08:38','2020-08-11 16:08:38'), (3646,9624,'845',0,'购买商品','nowMoney','pay_money',0.10,972340.59,'支付0.10元购买商品',0,'2020-08-11 16:08:38','2020-08-11 16:08:38'), (3647,9624,'860',0,'购买商品','nowMoney','pay_product',0.10,972340.49,'余额支付0.10元购买商品',0,'2020-08-11 16:57:18','2020-08-11 16:57:18'), (3648,9624,'860',0,'购买商品','nowMoney','pay_money',0.10,972340.49,'支付0.10元购买商品',0,'2020-08-11 16:57:18','2020-08-11 16:57:18'), (3649,9624,'861',0,'购买商品','nowMoney','pay_product',0.10,972340.39,'余额支付0.10元购买商品',0,'2020-08-11 16:57:48','2020-08-11 16:57:48'), (3650,9624,'861',0,'购买商品','nowMoney','pay_money',0.10,972340.39,'支付0.10元购买商品',0,'2020-08-11 16:57:48','2020-08-11 16:57:48'), (3651,9624,'862',0,'购买商品','nowMoney','pay_product',0.10,972340.29,'余额支付0.10元购买商品',0,'2020-08-11 16:58:36','2020-08-11 16:58:36'), (3652,9624,'862',0,'购买商品','nowMoney','pay_money',0.10,972340.29,'支付0.10元购买商品',0,'2020-08-11 16:58:36','2020-08-11 16:58:36'), (3653,9624,'865',0,'购买商品','nowMoney','pay_product',0.10,972340.19,'余额支付0.10元购买商品',0,'2020-08-11 17:00:28','2020-08-11 17:00:28'), (3654,9624,'865',0,'购买商品','nowMoney','pay_money',0.10,972340.19,'支付0.10元购买商品',0,'2020-08-11 17:00:28','2020-08-11 17:00:28'), (3655,9624,'867',0,'购买商品','nowMoney','pay_product',0.10,972340.09,'余额支付0.10元购买商品',0,'2020-08-11 17:12:46','2020-08-11 17:12:46'), (3656,9624,'867',0,'购买商品','nowMoney','pay_money',0.10,972340.09,'支付0.10元购买商品',0,'2020-08-11 17:12:46','2020-08-11 17:12:46'), (3657,9624,'869',0,'购买商品','nowMoney','pay_product',0.10,972339.99,'余额支付0.10元购买商品',0,'2020-08-11 17:43:24','2020-08-11 17:43:24'), (3658,9624,'869',0,'购买商品','nowMoney','pay_money',0.10,972339.99,'支付0.10元购买商品',0,'2020-08-11 17:43:24','2020-08-11 17:43:24'), (3659,9641,'866',0,'购买商品','nowMoney','pay_product',900.00,9999.00,'余额支付900.00元购买商品',0,'2020-08-11 18:04:28','2020-08-11 18:04:28'), (3660,9641,'866',0,'购买商品','nowMoney','pay_money',900.00,9999.00,'支付900.00元购买商品',0,'2020-08-11 18:04:29','2020-08-11 18:04:29'), (3661,9641,'876',0,'购买商品','nowMoney','pay_product',900.00,9099.00,'余额支付900.00元购买商品',0,'2020-08-11 18:16:16','2020-08-11 18:16:16'), (3662,9641,'876',0,'购买商品','nowMoney','pay_money',900.00,9099.00,'支付900.00元购买商品',0,'2020-08-11 18:16:16','2020-08-11 18:16:16'), (3663,9641,'873',0,'购买商品','nowMoney','pay_product',1800.00,8199.00,'余额支付1800.00元购买商品',0,'2020-08-11 18:17:27','2020-08-11 18:17:27'), (3664,9641,'873',0,'购买商品','nowMoney','pay_money',1800.00,8199.00,'支付1800.00元购买商品',0,'2020-08-11 18:17:28','2020-08-11 18:17:28'), (3665,9641,'859',0,'购买商品','nowMoney','pay_product',900.00,6399.00,'余额支付900.00元购买商品',0,'2020-08-11 18:18:34','2020-08-11 18:18:34'), (3666,9641,'859',0,'购买商品','nowMoney','pay_money',900.00,6399.00,'支付900.00元购买商品',0,'2020-08-11 18:18:34','2020-08-11 18:18:34'), (3667,9624,'888',0,'购买商品','nowMoney','pay_product',0.40,972339.89,'余额支付0.40元购买商品',0,'2020-08-11 19:26:52','2020-08-11 19:26:52'), (3668,9624,'888',0,'购买商品','nowMoney','pay_money',0.40,972339.89,'支付0.40元购买商品',0,'2020-08-11 19:26:52','2020-08-11 19:26:52'), (3669,9624,'0',0,'佣金转余额','brokerage_price','transferIn',1.00,999900.99,'佣金转余额减少了1',0,'2020-08-11 19:28:43','2020-08-11 19:28:43'), (3670,9624,'0',1,'佣金转余额','now_money','transferIn',1.00,972339.49,'佣金转余额增加了1',0,'2020-08-11 19:28:43','2020-08-11 19:28:43'), (3671,10255,'0',1,'签到积分奖励','integral','sign',10.00,0.00,'签到积分奖励增加了10',0,'2020-08-11 20:45:46','2020-08-11 20:45:46'), (3672,10255,'0',1,'签到经验奖励','experience','sign',10.00,0.00,'签到经验奖励增加了10',0,'2020-08-11 20:45:46','2020-08-11 20:45:46'), (3673,9641,'858',0,'购买商品','nowMoney','pay_product',900.00,5499.00,'余额支付900.00元购买商品',0,'2020-08-12 09:36:45','2020-08-12 09:36:45'), (3674,9641,'858',0,'购买商品','nowMoney','pay_money',900.00,5499.00,'支付900.00元购买商品',0,'2020-08-12 09:36:45','2020-08-12 09:36:45'), (3675,9641,'857',0,'购买商品','nowMoney','pay_product',900.00,4599.00,'余额支付900.00元购买商品',0,'2020-08-12 10:07:35','2020-08-12 10:07:35'), (3676,9641,'857',0,'购买商品','nowMoney','pay_money',900.00,4599.00,'支付900.00元购买商品',0,'2020-08-12 10:07:35','2020-08-12 10:07:35'), (3677,9641,'856',0,'购买商品','nowMoney','pay_product',900.00,3699.00,'余额支付900.00元购买商品',0,'2020-08-12 10:07:55','2020-08-12 10:07:55'), (3678,9641,'856',0,'购买商品','nowMoney','pay_money',900.00,3699.00,'支付900.00元购买商品',0,'2020-08-12 10:07:55','2020-08-12 10:07:55'), (3682,9641,'855',0,'购买商品','now_money','pay_money',900.00,999.00,'支付900.00元购买商品',0,'2020-08-12 11:15:43','2020-08-12 11:15:43'), (3683,9641,'893',0,'购买商品','now_money','pay_money',888.00,111.00,'支付888.00元购买商品',0,'2020-08-12 11:26:14','2020-08-12 11:26:14'), (3684,9624,'896',0,'购买商品','now_money','pay_money',0.10,972340.39,'支付0.10元购买商品',0,'2020-08-12 12:25:10','2020-08-12 12:25:10'), (3685,9624,'898',0,'购买商品','now_money','pay_money',0.10,972340.29,'支付0.10元购买商品',0,'2020-08-12 14:11:17','2020-08-12 14:11:17'), (3686,10262,'0',1,'签到积分奖励','integral','sign',10.00,0.00,'签到积分奖励增加了10',0,'2020-08-12 14:34:10','2020-08-12 14:34:10'), (3687,10262,'0',1,'签到经验奖励','experience','sign',10.00,0.00,'签到经验奖励增加了10',0,'2020-08-12 14:34:10','2020-08-12 14:34:10'), (3688,9624,'899',0,'购买商品','now_money','pay_money',24.00,972316.29,'支付24.00元购买商品',0,'2020-08-12 14:35:25','2020-08-12 14:35:25'), (3689,9624,'900',0,'购买商品','now_money','pay_money',8.00,972308.29,'支付8.00元购买商品',0,'2020-08-12 14:37:34','2020-08-12 14:37:34'), (3690,9624,'901',0,'购买商品','now_money','pay_money',8.00,972300.29,'支付8.00元购买商品',0,'2020-08-12 14:39:01','2020-08-12 14:39:01'), (3691,9624,'902',0,'购买商品','now_money','pay_money',8.00,972292.29,'支付8.00元购买商品',0,'2020-08-12 14:40:01','2020-08-12 14:40:01'), (3692,9624,'903',0,'购买商品','now_money','pay_money',8.00,972284.29,'支付8.00元购买商品',0,'2020-08-12 14:41:42','2020-08-12 14:41:42'), (3693,9624,'905',0,'购买商品','now_money','pay_money',9.00,972275.29,'支付9.00元购买商品',0,'2020-08-12 14:46:05','2020-08-12 14:46:05'), (3694,9624,'906',0,'购买商品','now_money','pay_money',9.00,972266.29,'支付9.00元购买商品',0,'2020-08-12 14:47:34','2020-08-12 14:47:34'), (3695,9624,'907',0,'购买商品','now_money','pay_money',9.00,972257.29,'支付9.00元购买商品',0,'2020-08-12 14:49:34','2020-08-12 14:49:34'), (3696,9641,'892',0,'购买商品','now_money','pay_money',0.10,110.90,'支付0.10元购买商品',0,'2020-08-12 15:13:40','2020-08-12 15:13:40'), (3697,9641,'854',0,'购买商品','now_money','pay_money',900.00,99099.00,'支付900.00元购买商品',0,'2020-08-12 15:50:55','2020-08-12 15:50:55'), (3698,9641,'853',0,'购买商品','now_money','pay_money',900.00,98199.00,'支付900.00元购买商品',0,'2020-08-12 15:51:34','2020-08-12 15:51:34'), (3699,10261,'909',0,'购买商品','now_money','pay_money',18.00,99981.00,'支付18.00元购买商品',0,'2020-08-12 15:58:42','2020-08-12 15:58:42'), (3702,10263,'0',1,'后台操作','integral','system_add',9.00,0.00,'后台操作增加了9',0,'2020-08-12 16:34:40','2020-08-12 16:34:40'), (3703,10263,'0',1,'后台操作','now_money','system_add',9.00,0.00,'后台操作增加了9',0,'2020-08-12 16:34:40','2020-08-12 16:34:40'), (3704,10263,'0',1,'后台操作','integral','system_add',200.00,9.00,'后台操作增加了200',0,'2020-08-12 16:34:55','2020-08-12 16:34:55'), (3705,10263,'0',1,'后台操作','now_money','system_add',200.00,9.00,'后台操作增加了200',0,'2020-08-12 16:34:55','2020-08-12 16:34:55'), (3706,10263,'0',1,'后台操作','integral','system_add',1.00,209.00,'后台操作增加了1',0,'2020-08-12 16:35:57','2020-08-12 16:35:57'), (3707,10263,'0',1,'后台操作','now_money','system_add',1.00,209.00,'后台操作增加了1',0,'2020-08-12 16:35:57','2020-08-12 16:35:57'), (3709,10264,'0',1,'后台操作','integral','system_add',10000.00,0.00,'后台操作增加了10000',0,'2020-08-12 17:24:31','2020-08-12 17:24:31'), (3710,10264,'0',1,'后台操作','now_money','system_add',10000.00,0.00,'后台操作增加了10000',0,'2020-08-12 17:24:31','2020-08-12 17:24:31'), (3711,10264,'0',1,'后台操作','integral','system_add',1000.00,10000.00,'后台操作增加了1000',0,'2020-08-12 17:25:41','2020-08-12 17:25:41'), (3712,10264,'0',1,'后台操作','now_money','system_add',1000.00,10000.00,'后台操作增加了1000',0,'2020-08-12 17:25:41','2020-08-12 17:25:41'), (3718,9643,'0',1,'签到积分奖励','integral','sign',10.00,0.00,'签到积分奖励增加了10',0,'2020-08-12 18:05:59','2020-08-12 18:05:59'), (3719,9643,'0',1,'签到经验奖励','experience','sign',10.00,0.00,'签到经验奖励增加了10',0,'2020-08-12 18:05:59','2020-08-12 18:05:59'), (3721,10260,'913',0,'购买商品','now_money','pay_money',9.00,0.00,'支付9.00元购买商品',0,'2020-08-12 18:11:55','2020-08-12 18:11:55'), (3722,10260,'912',0,'购买商品','now_money','pay_money',900.00,0.00,'支付900.00元购买商品',0,'2020-08-12 18:14:49','2020-08-12 18:14:49'), (3723,10260,'897',0,'购买商品','now_money','pay_money',0.10,0.00,'支付0.10元购买商品',0,'2020-08-12 18:18:33','2020-08-12 18:18:33'), (3724,10260,'916',0,'购买商品','now_money','pay_money',0.10,0.00,'支付0.10元购买商品',0,'2020-08-12 18:30:54','2020-08-12 18:30:54'), (3725,10260,'0',1,'后台操作','integral','system_add',111.00,0.00,'后台操作增加了111',0,'2020-08-12 21:52:41','2020-08-12 21:52:41'), (3726,10260,'0',1,'后台操作','now_money','system_add',111.00,0.00,'后台操作增加了111',0,'2020-08-12 21:52:41','2020-08-12 21:52:41'), (3727,9641,'923',0,'购买商品','nowMoney','pay_product',9.00,94581.00,'余额支付9.00元购买商品',0,'2020-08-12 22:43:04','2020-08-12 22:43:04'), (3728,9641,'923',0,'购买商品','nowMoney','pay_money',9.00,94581.00,'支付9.00元购买商品',0,'2020-08-12 22:43:04','2020-08-12 22:43:04'), (3729,9641,'924',0,'购买商品','nowMoney','pay_product',9.00,94572.00,'余额支付9.00元购买商品',0,'2020-08-12 22:47:17','2020-08-12 22:47:17'), (3730,9641,'924',0,'购买商品','nowMoney','pay_money',9.00,94572.00,'支付9.00元购买商品',0,'2020-08-12 22:47:17','2020-08-12 22:47:17'), (3731,9641,'925',0,'购买商品','nowMoney','pay_product',10.00,94563.00,'余额支付10.00元购买商品',0,'2020-08-12 22:47:59','2020-08-12 22:47:59'), (3732,9641,'925',0,'购买商品','nowMoney','pay_money',10.00,94563.00,'支付10.00元购买商品',0,'2020-08-12 22:47:59','2020-08-12 22:47:59'), (3742,9641,'932',0,'购买商品','nowMoney','pay_product',9.00,94553.00,'余额支付9.00元购买商品',0,'2020-08-12 23:12:28','2020-08-12 23:12:28'), (3743,9641,'932',0,'购买商品','nowMoney','pay_money',9.00,94553.00,'支付9.00元购买商品',0,'2020-08-12 23:12:30','2020-08-12 23:12:30'), (3744,9641,'933',0,'购买商品','nowMoney','pay_product',10.00,94544.00,'余额支付10.00元购买商品',0,'2020-08-12 23:13:34','2020-08-12 23:13:34'), (3745,9641,'933',0,'购买商品','nowMoney','pay_money',10.00,94544.00,'支付10.00元购买商品',0,'2020-08-12 23:13:34','2020-08-12 23:13:34'), (3746,10268,'0',1,'签到积分奖励','integral','sign',10.00,0.00,'签到积分奖励增加了10',0,'2020-08-13 00:32:12','2020-08-13 00:32:12'), (3747,10268,'0',1,'签到经验奖励','experience','sign',10.00,0.00,'签到经验奖励增加了10',0,'2020-08-13 00:32:12','2020-08-13 00:32:12'), (3748,10271,'0',1,'签到积分奖励','integral','sign',10.00,0.00,'签到积分奖励增加了10',0,'2020-08-13 09:36:03','2020-08-13 09:36:03'), (3749,10271,'0',1,'签到经验奖励','experience','sign',10.00,0.00,'签到经验奖励增加了10',0,'2020-08-13 09:36:03','2020-08-13 09:36:03'), (3750,9643,'0',1,'签到积分奖励','integral','sign',10.00,0.00,'签到积分奖励增加了10',0,'2020-08-13 10:09:30','2020-08-13 10:09:30'), (3751,9643,'0',1,'签到经验奖励','experience','sign',10.00,0.00,'签到经验奖励增加了10',0,'2020-08-13 10:09:30','2020-08-13 10:09:30'), (3752,9643,'0',1,'后台操作','integral','system_add',1000.00,0.00,'后台操作增加了1000',0,'2020-08-13 10:59:28','2020-08-13 10:59:28'), (3753,9643,'0',1,'后台操作','now_money','system_add',1000.00,0.00,'后台操作增加了1000',0,'2020-08-13 10:59:28','2020-08-13 10:59:28'), (3754,9643,'0',0,'后台操作','integral','system_sub',200.00,1000.00,'后台操作减少了200',0,'2020-08-13 10:59:45','2020-08-13 10:59:45'), (3755,9643,'0',0,'后台操作','now_money','system_sub',200.00,1000.00,'后台操作减少了200',0,'2020-08-13 10:59:45','2020-08-13 10:59:45'), (3756,9643,'0',1,'后台操作','integral','system_add',200.00,800.00,'后台操作增加了200',0,'2020-08-13 11:00:28','2020-08-13 11:00:28'), (3757,9643,'0',1,'后台操作','now_money','system_add',200.00,800.00,'后台操作增加了200',0,'2020-08-13 11:00:28','2020-08-13 11:00:28'), (3758,10278,'0',1,'签到积分奖励','integral','sign',10.00,0.00,'签到积分奖励增加了10',0,'2020-08-13 11:44:31','2020-08-13 11:44:31'), (3759,10278,'0',1,'签到经验奖励','experience','sign',10.00,0.00,'签到经验奖励增加了10',0,'2020-08-13 11:44:31','2020-08-13 11:44:31'), (3760,10272,'0',1,'充值支付','now_money','pay_success',0.01,0.00,'{$title}增加了0.01',0,'2020-08-13 12:01:37','2020-08-13 12:01:37'), (3761,10272,'0',1,'充值支付','now_money','pay_success',0.11,0.01,'{$title}增加了0.11',0,'2020-08-13 12:09:56','2020-08-13 12:09:56'), (3762,9624,'950',0,'购买商品','nowMoney','pay_product',20.00,972257.29,'余额支付20.00元购买商品',0,'2020-08-13 15:10:31','2020-08-13 15:10:31'), (3763,9624,'950',0,'购买商品','nowMoney','pay_money',20.00,972257.29,'支付20.00元购买商品',0,'2020-08-13 15:10:31','2020-08-13 15:10:31'), (3764,9624,'0',0,'佣金转余额','brokerage_price','transferIn',100.00,999899.99,'{$title}减少了100',0,'2020-08-13 15:31:17','2020-08-13 15:31:17'), (3765,9624,'0',1,'佣金转余额','now_money','transferIn',100.00,972237.29,'{$title}增加了100',0,'2020-08-13 15:31:17','2020-08-13 15:31:17'), (3766,9624,'0',1,'签到积分奖励','integral','sign',10.00,80.00,'{$title}增加了10',0,'2020-08-13 15:43:46','2020-08-13 15:43:46'), (3767,9624,'0',1,'签到经验奖励','experience','sign',10.00,750.00,'{$title}增加了10',0,'2020-08-13 15:43:46','2020-08-13 15:43:46'); /*!40000 ALTER TABLE `eb_user_bill` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_user_enter # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_user_enter`; CREATE TABLE `eb_user_enter` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '商户申请ID', `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '用户ID', `province` varchar(32) NOT NULL DEFAULT '' COMMENT '商户所在省', `city` varchar(32) NOT NULL DEFAULT '' COMMENT '商户所在市', `district` varchar(32) NOT NULL DEFAULT '' COMMENT '商户所在区', `address` varchar(256) NOT NULL DEFAULT '' COMMENT '商户详细地址', `merchant_name` varchar(256) NOT NULL DEFAULT '' COMMENT '商户名称', `link_user` varchar(32) NOT NULL DEFAULT '', `link_tel` varchar(16) NOT NULL DEFAULT '' COMMENT '商户电话', `charter` varchar(512) NOT NULL DEFAULT '' COMMENT '商户证书', `add_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', `apply_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '审核时间', `success_time` int(11) NOT NULL COMMENT '通过时间', `fail_message` varchar(256) NOT NULL DEFAULT '' COMMENT '未通过原因', `fail_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '未通过时间', `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '-1 审核未通过 0未审核 1审核通过', `is_lock` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0 = 开启 1= 关闭', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `uid` (`uid`) USING BTREE, KEY `province` (`province`,`city`,`district`) USING BTREE, KEY `is_lock` (`is_lock`) USING BTREE, KEY `is_del` (`is_del`) USING BTREE, KEY `status` (`status`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商户申请表'; # Dump of table eb_user_extract # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_user_extract`; CREATE TABLE `eb_user_extract` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `uid` int(10) unsigned DEFAULT NULL, `real_name` varchar(64) DEFAULT NULL COMMENT '名称', `extract_type` varchar(32) DEFAULT 'bank' COMMENT 'bank = 银行卡 alipay = 支付宝wx=微信', `bank_code` varchar(32) DEFAULT '0' COMMENT '银行卡', `bank_address` varchar(256) DEFAULT '' COMMENT '开户地址', `alipay_code` varchar(64) DEFAULT '' COMMENT '支付宝账号', `extract_price` decimal(8,2) unsigned DEFAULT '0.00' COMMENT '提现金额', `mark` varchar(512) DEFAULT NULL, `balance` decimal(8,2) unsigned DEFAULT '0.00', `fail_msg` varchar(128) DEFAULT NULL COMMENT '无效原因', `status` tinyint(2) DEFAULT '0' COMMENT '-1 未通过 0 审核中 1 已提现', `wechat` varchar(15) DEFAULT NULL COMMENT '微信号', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `fail_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '失败时间', PRIMARY KEY (`id`) USING BTREE, KEY `extract_type` (`extract_type`) USING BTREE, KEY `status` (`status`) USING BTREE, KEY `openid` (`uid`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户提现表'; # Dump of table eb_user_group # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_user_group`; CREATE TABLE `eb_user_group` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `group_name` varchar(64) DEFAULT NULL COMMENT '用户分组名称', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户分组表'; LOCK TABLES `eb_user_group` WRITE; /*!40000 ALTER TABLE `eb_user_group` DISABLE KEYS */; INSERT INTO `eb_user_group` (`id`, `group_name`) VALUES (1,'初级会员1'), (2,'中级会员'), (3,'高级会员'), (4,'黄金vip'), (5,'007'), (6,'水电费'), (7,'454'), (9,'我的分组'); /*!40000 ALTER TABLE `eb_user_group` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_user_level # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_user_level`; CREATE TABLE `eb_user_level` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户uid', `level_id` int(11) NOT NULL DEFAULT '0' COMMENT '等级vip', `grade` int(11) NOT NULL DEFAULT '0' COMMENT '会员等级', `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0:禁止,1:正常', `mark` varchar(255) NOT NULL DEFAULT '' COMMENT '备注', `remind` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否已通知', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除,0=未删除,1=删除', `discount` int(11) NOT NULL DEFAULT '0' COMMENT '享受折扣', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `expired_time` timestamp NULL DEFAULT NULL COMMENT '过期时间', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `id` (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户等级记录表'; LOCK TABLES `eb_user_level` WRITE; /*!40000 ALTER TABLE `eb_user_level` DISABLE KEYS */; INSERT INTO `eb_user_level` (`id`, `uid`, `level_id`, `grade`, `status`, `mark`, `remind`, `is_del`, `discount`, `create_time`, `update_time`, `expired_time`) VALUES (4,1,1,1,1,'尊敬的用户 【等风来,随风去, 】在2020-04-29 11:38:59赠送会员等级成为普通会员1会员',0,1,99,'2020-04-29 11:38:59','2020-04-29 12:01:11','2020-04-29 11:38:59'), (5,1,5,5,1,'尊敬的用户 【等风来,随风去, 】在2020-04-29 11:39:06赠送会员等级成为黄金会员会员',0,1,90,'2020-04-29 11:39:06','2020-04-29 12:01:11','2020-08-07 11:39:06'), (6,1,3,3,1,'尊敬的用户 【等风来,随风去, 】在2020-04-29 11:40:04赠送会员等级成为黄铜会员会员',0,1,95,'2020-04-29 11:39:18','2020-04-29 12:01:11','2020-04-29 11:40:04'), (7,5,1,1,1,'尊敬的用户 【路人甲, 】在2020-04-29 12:01:49赠送会员等级成为普通会员1会员',0,0,99,'2020-04-29 12:01:49','2020-04-29 12:01:49','2020-04-29 12:01:49'), (8,1,5,5,1,'尊敬的用户 【等风来,随风去, 】在2020-04-29 12:02:21赠送会员等级成为黄金会员会员',0,0,90,'2020-04-29 12:02:21','2020-04-29 12:02:21','2020-08-07 12:02:21'), (9,1,4,4,1,'尊敬的用户 【等风来,随风去, 】在2020-04-29 12:02:46赠送会员等级成为白银会员会员',0,0,94,'2020-04-29 12:02:47','2020-04-29 12:02:47','2020-04-29 12:02:46'), (11,9624,6,6,1,'尊敬的用户 ccfa7e607719, 在2020-05-29 10:07:29赠送会员等级成为钻石会员会员',0,0,88,'2020-05-29 10:07:29','2020-05-29 10:07:29',NULL); /*!40000 ALTER TABLE `eb_user_level` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_user_recharge # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_user_recharge`; CREATE TABLE `eb_user_recharge` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `uid` int(10) DEFAULT NULL COMMENT '充值用户UID', `order_id` varchar(32) DEFAULT NULL COMMENT '订单号', `price` decimal(8,2) DEFAULT NULL COMMENT '充值金额', `give_price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '购买赠送金额', `recharge_type` varchar(32) DEFAULT NULL COMMENT '充值类型', `paid` tinyint(1) DEFAULT '0' COMMENT '是否充值', `pay_time` timestamp NULL DEFAULT NULL COMMENT '充值支付时间', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '充值时间', `refund_price` decimal(10,2) DEFAULT '0.00' COMMENT '退款金额', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `order_id` (`order_id`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `recharge_type` (`recharge_type`) USING BTREE, KEY `paid` (`paid`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户充值表'; LOCK TABLES `eb_user_recharge` WRITE; /*!40000 ALTER TABLE `eb_user_recharge` DISABLE KEYS */; INSERT INTO `eb_user_recharge` (`id`, `uid`, `order_id`, `price`, `give_price`, `recharge_type`, `paid`, `pay_time`, `create_time`, `refund_price`) VALUES (1,9624,'wx2020062414132154218',20.00,2.00,'public',0,NULL,'2020-06-24 14:13:21',0.00), (40,9624,'wx2020062810090978740',20.00,2.00,'public',0,NULL,'2020-06-28 10:09:09',0.00), (47,9624,'wx2020062811145390866',20.00,2.00,'public',0,NULL,'2020-06-28 11:14:54',0.00), (48,9624,'wx2020062811172695586',20.00,2.00,'public',0,NULL,'2020-06-28 11:17:27',0.00), (53,9624,'wx2020062811395623198',20.00,2.00,'public',0,NULL,'2020-06-28 11:39:56',0.00), (54,9624,'wx2020062811401817256',20.00,2.00,'public',0,NULL,'2020-06-28 11:40:18',0.00), (55,9624,'wx2020063010295527640',20.00,2.00,'public',0,NULL,'2020-06-30 10:29:56',0.00), (67,9624,'wx2020080610291658144',20.00,2.00,'weixinh5',0,NULL,'2020-08-06 10:29:16',0.00), (68,9624,'wx2020080610353548059',20.00,2.00,'weixinh5',0,NULL,'2020-08-06 10:35:35',0.00), (69,9624,'wx2020080610365473399',20.00,2.00,'weixinh5',0,NULL,'2020-08-06 10:36:54',0.00), (70,9624,'wx2020080610422876867',20.00,2.00,'weixinh5',0,NULL,'2020-08-06 10:42:28',0.00), (71,9624,'wx2020080610484888298',20.00,2.00,'weixinh5',0,NULL,'2020-08-06 10:48:48',0.00), (72,9638,'wx2020080614250361116',20.00,2.00,'routine',0,NULL,'2020-08-06 14:25:03',0.00), (73,9638,'wx2020080614275593253',20.00,2.00,'routine',0,NULL,'2020-08-06 14:27:55',0.00), (74,9638,'wx2020080614311277730',20.00,2.00,'routine',0,NULL,'2020-08-06 14:31:12',0.00), (75,9638,'wx2020080614320922794',20.00,2.00,'routine',0,NULL,'2020-08-06 14:32:09',0.00), (76,9638,'wx2020080614331836803',20.00,2.00,'routine',0,NULL,'2020-08-06 14:33:18',0.00), (77,9624,'wx2020080614412567191',20.00,2.00,'weixinh5',0,NULL,'2020-08-06 14:41:25',0.00), (78,9624,'wx2020080709374467142',20.00,2.00,'weixinh5',0,NULL,'2020-08-07 09:37:44',0.00), (83,9640,'wx2020080710173977813',20.00,2.00,'routine',0,NULL,'2020-08-07 10:17:39',0.00), (84,9640,'wx2020080710210370351',20.00,2.00,'routine',0,NULL,'2020-08-07 10:21:03',0.00), (85,9640,'wx2020080710270144170',20.00,2.00,'routine',0,NULL,'2020-08-07 10:27:01',0.00), (86,9638,'wx2020081009482769969',30.00,3.00,'routine',0,NULL,'2020-08-10 09:48:27',0.00), (87,9638,'wx2020081009571361663',30.00,3.00,'routine',0,NULL,'2020-08-10 09:57:13',0.00), (88,9638,'wx2020081010014951714',30.00,3.00,'routine',0,NULL,'2020-08-10 10:01:49',0.00), (89,9638,'wx2020081010041064586',30.00,3.00,'routine',0,NULL,'2020-08-10 10:04:10',0.00), (90,9638,'wx2020081010044989889',30.00,3.00,'routine',0,NULL,'2020-08-10 10:04:49',0.00), (91,9638,'wx2020081010054632358',30.00,3.00,'routine',0,NULL,'2020-08-10 10:05:46',0.00), (92,9638,'wx2020081010064072033',30.00,3.00,'routine',0,NULL,'2020-08-10 10:06:40',0.00), (93,9638,'wx2020081010074232297',30.00,3.00,'routine',0,NULL,'2020-08-10 10:07:42',0.00), (94,9638,'wx2020081010104337229',30.00,3.00,'routine',0,NULL,'2020-08-10 10:10:43',0.00), (95,9638,'wx2020081010113480443',30.00,3.00,'routine',0,NULL,'2020-08-10 10:11:34',0.00), (96,9638,'wx2020081010135080450',30.00,3.00,'routine',0,NULL,'2020-08-10 10:13:50',0.00), (102,9638,'wx2020081010273365374',0.10,0.10,'routine',0,NULL,'2020-08-10 10:27:33',0.00), (103,9640,'wx2020081014060852506',0.10,0.10,'routine',0,NULL,'2020-08-10 14:06:08',0.00), (104,9624,'wx2020081014373668391',0.10,0.10,'weixinh5',0,NULL,'2020-08-10 14:37:36',0.00), (105,9624,'wx2020081014374974873',0.10,0.10,'weixinh5',0,NULL,'2020-08-10 14:37:49',0.00), (106,9624,'wx2020081014421220669',0.10,0.10,'weixinh5',0,NULL,'2020-08-10 14:42:12',0.00), (107,9624,'wx2020081014433572416',0.10,0.10,'weixinh5',0,NULL,'2020-08-10 14:43:35',0.00), (108,9624,'wx2020081014443627856',0.10,0.10,'weixinh5',0,NULL,'2020-08-10 14:44:36',0.00), (109,9640,'wx2020081014493166243',0.10,0.10,'routine',0,NULL,'2020-08-10 14:49:31',0.00), (110,9640,'wx2020081014494029454',0.10,0.10,'routine',0,NULL,'2020-08-10 14:49:40',0.00), (111,9638,'wx2020081014513715187',0.10,0.10,'routine',0,NULL,'2020-08-10 14:51:37',0.00), (112,9638,'wx2020081014532415483',0.10,0.10,'routine',0,NULL,'2020-08-10 14:53:24',0.00), (113,9624,'wx2020081014590360234',0.10,0.10,'weixinh5',0,NULL,'2020-08-10 14:59:03',0.00), (114,9624,'wx2020081015100287837',0.10,0.10,'weixinh5',0,NULL,'2020-08-10 15:10:02',0.00), (115,9638,'wx2020081015143854649',0.10,0.10,'routine',0,NULL,'2020-08-10 15:14:38',0.00), (116,9638,'wx2020081015182419812',0.10,0.10,'routine',0,NULL,'2020-08-10 15:18:24',0.00), (117,9638,'wx2020081015192951777',0.10,0.10,'routine',0,NULL,'2020-08-10 15:19:29',0.00), (118,9624,'wx2020081015205143621',0.10,0.10,'weixinh5',0,NULL,'2020-08-10 15:20:51',0.00), (119,9624,'wx2020081015210326361',0.10,0.10,'weixinh5',0,NULL,'2020-08-10 15:21:03',0.00), (120,9624,'wx2020081015235263338',0.10,0.10,'weixinh5',0,NULL,'2020-08-10 15:23:52',0.00), (121,9640,'wx2020081015322151490',0.10,0.10,'routine',0,NULL,'2020-08-10 15:32:21',0.00), (122,9640,'wx2020081015341639335',0.10,0.10,'routine',0,NULL,'2020-08-10 15:34:16',0.00), (123,9624,'wx2020081015374129934',0.10,0.10,'weixinh5',0,NULL,'2020-08-10 15:37:41',0.00), (125,9624,'wx2020081015393448701',0.10,0.10,'weixinh5',0,NULL,'2020-08-10 15:39:34',0.00), (126,9624,'wx2020081015395891624',0.10,0.10,'routine',0,NULL,'2020-08-10 15:39:59',0.00), (127,9624,'wx2020081015414455745',0.10,0.10,'weixinh5',0,NULL,'2020-08-10 15:41:44',0.00), (128,9624,'wx2020081015420997743',0.10,0.10,'weixinh5',0,NULL,'2020-08-10 15:42:09',0.00), (129,9624,'wx2020081015423812165',0.10,0.10,'weixinh5',0,NULL,'2020-08-10 15:42:38',0.00), (135,9642,'wx2020081016194887429',0.10,0.10,'routine',0,NULL,'2020-08-10 16:19:48',0.00), (136,9638,'wx2020081016234884577',0.10,0.10,'routine',0,NULL,'2020-08-10 16:23:48',0.00), (137,9642,'wx2020081016272318105',0.10,0.10,'routine',0,NULL,'2020-08-10 16:27:23',0.00), (138,9642,'wx2020081016302690752',0.01,0.10,'routine',1,'2020-08-10 17:29:22','2020-08-10 16:30:26',0.00), (139,9642,'wx2020081017432743831',0.01,0.10,'routine',1,'2020-08-10 18:00:26','2020-08-10 17:43:27',0.00), (140,9624,'wx2020081019180062089',0.01,0.10,'weixinh5',0,NULL,'2020-08-10 19:18:00',0.00), (141,9624,'wx2020081022051581288',0.01,0.10,'weixinh5',0,NULL,'2020-08-10 22:05:15',0.00), (142,9624,'wx2020081022064385826',0.01,0.10,'weixinh5',0,NULL,'2020-08-10 22:06:43',0.00), (143,9641,'wx2020081115181899109',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 15:18:18',0.00), (144,9641,'wx2020081115184423017',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 15:18:44',0.00), (145,10250,'wx2020081118575035861',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 18:57:50',0.00), (146,10250,'wx2020081118590418768',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 18:59:04',0.00), (147,9624,'wx2020081119180755142',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:18:07',0.00), (148,9624,'wx2020081119183644456',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:18:36',0.00), (149,9624,'wx2020081119202728539',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:20:27',0.00), (150,10250,'wx2020081119293348318',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:29:33',0.00), (151,10250,'wx2020081119302917297',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:30:29',0.00), (152,9642,'wx2020081119383473704',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:38:34',0.00), (153,9642,'wx2020081119385227600',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:38:52',0.00), (154,9642,'wx2020081119392739110',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:39:27',0.00), (155,9642,'wx2020081119394034933',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:39:40',0.00), (156,9642,'wx2020081119403483905',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:40:34',0.00), (157,10250,'wx2020081119413956735',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:41:39',0.00), (158,10250,'wx2020081119434561014',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:43:45',0.00), (159,10250,'wx2020081119442452668',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:44:24',0.00), (160,9642,'wx2020081119511780698',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:51:17',0.00), (161,9642,'wx2020081119513039297',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:51:30',0.00), (162,10250,'wx2020081119514221098',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:51:42',0.00), (163,10250,'wx2020081119522761900',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:52:27',0.00), (164,9642,'wx2020081119571873564',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:57:18',0.00), (165,9624,'wx2020081119573083516',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:57:30',0.00), (166,9624,'wx2020081119584782497',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 19:58:47',0.00), (167,9624,'wx2020081120023379290',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 20:02:35',0.00), (168,9624,'wx2020081120032649117',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 20:03:49',0.00), (171,9624,'wx2020081120062977581',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 20:06:29',0.00), (172,9624,'wx2020081120073320683',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 20:07:33',0.00), (173,9624,'wx2020081120085482191',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 20:08:54',0.00), (174,9624,'wx2020081120093456559',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 20:09:34',0.00), (175,9624,'wx2020081120095477036',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 20:09:54',0.00), (176,9624,'wx2020081120104861640',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 20:10:48',0.00), (180,9624,'wx2020081120123475211',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 20:12:34',0.00), (183,9624,'wx2020081120134562806',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 20:13:45',0.00), (184,9624,'wx2020081120143154432',0.01,0.10,'weixinh5',0,NULL,'2020-08-11 20:14:31',0.00), (188,9624,'wx2020081210272074330',0.01,0.10,'public',0,NULL,'2020-08-12 10:27:20',0.00), (194,9624,'wx2020081210364265176',0.01,0.10,'public',0,NULL,'2020-08-12 10:36:42',0.00), (200,10254,'wx2020081210591543634',0.01,0.10,'public',0,NULL,'2020-08-12 10:59:15',0.00), (202,10258,'wx2020081211043219720',0.01,0.10,'routine',0,NULL,'2020-08-12 11:04:32',0.00), (207,9624,'wx2020081212271592701',0.01,0.10,'routine',0,NULL,'2020-08-12 12:27:15',0.00), (209,9624,'wx2020081212291395377',0.01,0.10,'public',0,NULL,'2020-08-12 12:29:13',0.00), (210,9624,'wx2020081212292615875',0.01,0.10,'public',0,NULL,'2020-08-12 12:29:26',0.00), (219,9624,'wx2020081212422367021',0.01,0.10,'public',0,NULL,'2020-08-12 12:42:23',0.00), (220,10260,'wx2020081214042548192',0.01,0.10,'routine',0,NULL,'2020-08-12 14:04:25',0.00), (221,10260,'wx2020081214063895077',0.01,0.10,'routine',0,NULL,'2020-08-12 14:06:38',0.00), (222,10261,'wx2020081214262549105',0.01,0.10,'public',0,NULL,'2020-08-12 14:26:25',0.00), (223,10261,'wx2020081214265779526',0.01,0.10,'public',0,NULL,'2020-08-12 14:26:57',0.00), (224,9624,'wx2020081214314945960',0.01,0.10,'public',0,NULL,'2020-08-12 14:31:49',0.00), (225,9624,'wx2020081214463527453',0.01,0.10,'public',0,NULL,'2020-08-12 14:46:35',0.00), (226,9624,'wx2020081214590924050',0.01,0.10,'public',0,NULL,'2020-08-12 14:59:09',0.00), (227,10261,'wx2020081215003344980',0.01,0.10,'public',0,NULL,'2020-08-12 15:00:33',0.00), (229,10260,'wx2020081217091735863',0.01,0.10,'routine',0,NULL,'2020-08-12 17:09:17',0.00), (230,9624,'wx2020081217544359404',0.01,0.10,'public',0,NULL,'2020-08-12 17:54:43',0.00), (231,9624,'wx2020081217552967947',0.01,0.10,'public',0,NULL,'2020-08-12 17:55:29',0.00), (232,9624,'wx2020081218040088270',0.01,0.10,'public',0,NULL,'2020-08-12 18:04:00',0.00), (234,10261,'wx2020081218152718011',0.01,0.10,'public',0,NULL,'2020-08-12 18:15:27',0.00), (235,9624,'wx2020081219365390877',0.01,0.10,'public',0,NULL,'2020-08-12 19:36:53',0.00), (236,9624,'wx2020081220104889734',0.01,0.10,'public',0,NULL,'2020-08-12 20:10:48',0.00), (239,10261,'wx2020081220271390438',0.01,0.10,'public',0,NULL,'2020-08-12 20:27:13',0.00), (240,10261,'wx2020081220272427768',0.01,0.10,'public',0,NULL,'2020-08-12 20:27:24',0.00), (241,10261,'wx2020081220301261824',0.01,0.10,'public',0,NULL,'2020-08-12 20:30:12',0.00), (242,10261,'wx2020081220393740465',0.01,0.10,'public',0,NULL,'2020-08-12 20:39:37',0.00), (243,10261,'wx2020081220401936721',0.01,0.10,'public',0,NULL,'2020-08-12 20:40:19',0.00), (244,9624,'wx2020081220442689446',0.01,0.10,'public',0,NULL,'2020-08-12 20:44:26',0.00), (245,9624,'wx2020081220454066117',0.01,0.10,'public',0,NULL,'2020-08-12 20:45:40',0.00), (246,10261,'wx2020081220510513880',0.01,0.10,'public',0,NULL,'2020-08-12 20:51:05',0.00), (247,10261,'wx2020081220591329044',0.01,0.10,'public',0,NULL,'2020-08-12 20:59:13',0.00), (248,9624,'wx2020081220595450787',0.01,0.10,'public',0,NULL,'2020-08-12 20:59:54',0.00), (250,9624,'wx2020081221023678432',0.01,0.10,'public',0,NULL,'2020-08-12 21:02:36',0.00), (251,10261,'wx2020081221025763470',0.01,0.10,'public',0,NULL,'2020-08-12 21:02:57',0.00), (252,10261,'wx2020081221031930618',0.01,0.10,'public',0,NULL,'2020-08-12 21:03:19',0.00), (253,10261,'wx2020081221034124279',0.01,0.10,'public',0,NULL,'2020-08-12 21:03:41',0.00), (254,9624,'wx2020081221044433053',0.01,0.10,'public',0,NULL,'2020-08-12 21:04:44',0.00), (255,10261,'wx2020081221064955723',0.01,0.10,'public',0,NULL,'2020-08-12 21:06:49',0.00), (257,10261,'wx2020081221235683939',0.01,0.10,'public',0,NULL,'2020-08-12 21:23:56',0.00), (258,10261,'wx2020081221313166392',0.01,0.10,'public',0,NULL,'2020-08-12 21:31:31',0.00), (259,9624,'wx2020081221551357124',0.01,0.10,'routine',0,NULL,'2020-08-12 21:55:13',0.00), (260,9624,'wx2020081300034412884',0.01,0.10,'routine',0,NULL,'2020-08-13 00:03:44',0.00), (264,10272,'wx2020081312010630003',10.00,0.00,'public',0,NULL,'2020-08-13 12:01:06',0.00), (265,10272,'wx2020081312011867666',1.00,0.00,'public',0,NULL,'2020-08-13 12:01:18',0.00), (266,10272,'wx2020081312013181534',0.01,0.00,'public',1,'2020-08-13 12:01:37','2020-08-13 12:01:31',0.00), (268,10272,'wx2020081312095093849',0.01,0.10,'public',1,'2020-08-13 12:09:56','2020-08-13 12:09:50',0.00); /*!40000 ALTER TABLE `eb_user_recharge` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_user_sign # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_user_sign`; CREATE TABLE `eb_user_sign` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户uid', `title` varchar(255) NOT NULL DEFAULT '' COMMENT '签到说明', `number` int(11) NOT NULL DEFAULT '0' COMMENT '获得', `balance` int(11) NOT NULL DEFAULT '0' COMMENT '剩余', `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '类型,1积分,2经验', `create_day` date NOT NULL COMMENT '签到日期', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', PRIMARY KEY (`id`) USING BTREE, KEY `uid` (`uid`,`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='签到记录表'; LOCK TABLES `eb_user_sign` WRITE; /*!40000 ALTER TABLE `eb_user_sign` DISABLE KEYS */; INSERT INTO `eb_user_sign` (`id`, `uid`, `title`, `number`, `balance`, `type`, `create_day`, `create_time`) VALUES (1,9624,'签到积分奖励',10,90,1,'2020-07-24','2020-07-24 18:54:02'), (2,9624,'签到积分奖励',10,90,1,'2020-07-25','2020-07-25 14:38:23'), (3,9624,'签到积分奖励',10,90,1,'2020-07-27','2020-07-27 19:55:33'), (4,9624,'签到积分奖励',10,90,1,'2020-07-28','2020-07-28 10:45:54'), (5,9624,'签到积分奖励',10,90,1,'2020-08-04','2020-08-04 11:59:35'), (6,9638,'签到积分奖励',10,10,1,'2020-08-05','2020-08-05 16:11:54'), (7,9638,'签到积分奖励',10,10,1,'2020-08-06','2020-08-06 10:29:26'), (8,10255,'签到积分奖励',10,10,1,'2020-08-11','2020-08-11 20:45:46'), (9,10262,'签到积分奖励',10,10,1,'2020-08-12','2020-08-12 14:34:10'), (10,9643,'签到积分奖励',10,10,1,'2020-08-12','2020-08-12 18:05:59'), (11,10268,'签到积分奖励',10,10,1,'2020-08-13','2020-08-13 00:32:12'), (12,10271,'签到积分奖励',10,10,1,'2020-08-13','2020-08-13 09:36:03'), (13,9643,'签到积分奖励',10,10,1,'2020-08-13','2020-08-13 10:09:30'), (14,10278,'签到积分奖励',10,10,1,'2020-08-13','2020-08-13 11:44:31'), (15,9624,'签到积分奖励',10,90,1,'2020-08-13','2020-08-13 15:43:46'); /*!40000 ALTER TABLE `eb_user_sign` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_user_tag # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_user_tag`; CREATE TABLE `eb_user_tag` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(64) DEFAULT NULL COMMENT '标签名称', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='标签管理'; LOCK TABLES `eb_user_tag` WRITE; /*!40000 ALTER TABLE `eb_user_tag` DISABLE KEYS */; INSERT INTO `eb_user_tag` (`id`, `name`) VALUES (1,'初级'), (2,'中级'), (3,'高级'), (4,'黄金'), (5,'11'), (7,'超级'); /*!40000 ALTER TABLE `eb_user_tag` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_user_task_finish # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_user_task_finish`; CREATE TABLE `eb_user_task_finish` ( `id` int(11) NOT NULL AUTO_INCREMENT, `task_id` int(11) NOT NULL DEFAULT '0' COMMENT '任务id', `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户id', `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否有效', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `id` (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户任务完成记录表'; LOCK TABLES `eb_user_task_finish` WRITE; /*!40000 ALTER TABLE `eb_user_task_finish` DISABLE KEYS */; INSERT INTO `eb_user_task_finish` (`id`, `task_id`, `uid`, `status`, `create_time`, `update_time`) VALUES (16,1,5,1,'2020-04-29 12:01:50','2020-04-29 12:01:50'), (17,1,1,1,'2020-04-29 12:02:22','2020-04-29 12:02:22'), (18,2,1,1,'2020-04-29 12:02:22','2020-04-29 12:02:22'), (19,3,1,1,'2020-04-29 12:02:22','2020-04-29 12:02:22'), (20,4,1,1,'2020-04-29 12:02:22','2020-04-29 12:02:22'), (21,5,1,1,'2020-04-29 12:02:22','2020-04-29 12:02:22'), (22,1,9624,1,'2020-05-29 10:07:30','2020-05-29 10:07:30'), (23,2,9624,1,'2020-05-29 10:07:30','2020-05-29 10:07:30'), (24,3,9624,1,'2020-05-29 10:07:30','2020-05-29 10:07:30'), (25,4,9624,1,'2020-05-29 10:07:30','2020-05-29 10:07:30'), (26,5,9624,1,'2020-05-29 10:07:30','2020-05-29 10:07:30'), (27,6,9624,1,'2020-05-29 10:07:30','2020-05-29 10:07:30'); /*!40000 ALTER TABLE `eb_user_task_finish` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_user_token # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_user_token`; CREATE TABLE `eb_user_token` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uid` int(10) unsigned NOT NULL COMMENT '用户 id', `token` varchar(500) NOT NULL COMMENT 'token', `type` tinyint(1) DEFAULT '1' COMMENT '类型,1 公众号, 2 小程序, 3 unionid', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `expires_time` datetime DEFAULT NULL COMMENT '到期时间', `login_ip` varchar(32) DEFAULT NULL COMMENT '登录ip', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `type+token` (`type`,`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; LOCK TABLES `eb_user_token` WRITE; /*!40000 ALTER TABLE `eb_user_token` DISABLE KEYS */; INSERT INTO `eb_user_token` (`id`, `uid`, `token`, `type`, `create_time`, `expires_time`, `login_ip`) VALUES (1,9624,'ooX2q5SELgkjiZ4gmn3p2WIhHDXA',2,'2020-08-12 12:07:11',NULL,NULL), (2,9624,'ole_75w45-FMANFzkuL9duMUHVzM',1,'2020-08-12 12:28:14',NULL,NULL), (3,10260,'ooX2q5QwkDTPYxqxdUoLuuvdP_Gw',2,'2020-08-12 12:30:00',NULL,NULL), (4,10261,'ole_75xL1cE261K3AaQ5x_z7am98',1,'2020-08-12 14:25:30',NULL,NULL), (5,10262,'ole_751aWdYtzgSzx1f2QMvPP7KE',1,'2020-08-12 14:27:24',NULL,NULL), (6,10263,'ole_750rbgrQfA_gLBRT_BRt3ypY',1,'2020-08-12 15:54:11',NULL,NULL), (7,10265,'ole_756FVj9FE3_Nl0xUmTZWgnu8',1,'2020-08-12 20:45:55',NULL,NULL), (8,10266,'ole_75yuVlDPBCPUmLk5yR2Rs5JI',1,'2020-08-12 21:01:12',NULL,NULL), (9,10267,'ooX2q5TDJUtRG3P9e2B-kY3BWzz8',2,'2020-08-12 22:02:44',NULL,NULL), (10,10268,'ole_75ztAM3kJo53YZSETvi0hlVY',1,'2020-08-13 00:31:43',NULL,NULL), (11,10269,'ole_750uBFG6ioc7Nokdd33A4yEM',1,'2020-08-13 09:33:55',NULL,NULL), (12,10270,'ole_753wjpmY9ycm8xGwrJK8Sdv0',1,'2020-08-13 09:34:27',NULL,NULL), (13,10271,'ole_75wBH344svmUVmV0fbwtYzaw',1,'2020-08-13 09:34:29',NULL,NULL), (14,10272,'ole_750sCigViFi2-Rlsmj8SHoKc',1,'2020-08-13 09:34:41',NULL,NULL), (15,10273,'ole_75zQ7Lskt5Az297T9TQsezyo',1,'2020-08-13 09:35:11',NULL,NULL), (16,10274,'ole_75yuNsbfgiBAF0x5L90PSlvc',1,'2020-08-13 09:38:01',NULL,NULL), (17,10275,'ole_756zgPqldtNzRMdtiMF_5P4Y',1,'2020-08-13 09:45:13',NULL,NULL), (18,10276,'ole_753wyYvtARAxNT0bY9JgMyqs',1,'2020-08-13 11:19:08',NULL,NULL), (19,10277,'ole_75yCnb1Ert7jdoYYM-WcCSXg',1,'2020-08-13 11:31:31',NULL,NULL); /*!40000 ALTER TABLE `eb_user_token` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_wechat_media # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_wechat_media`; CREATE TABLE `eb_wechat_media` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '微信视频音频id', `type` varchar(16) NOT NULL DEFAULT '' COMMENT '回复类型', `path` varchar(128) NOT NULL DEFAULT '' COMMENT '文件路径', `media_id` varchar(64) NOT NULL DEFAULT '' COMMENT '微信服务器返回的id', `url` varchar(256) NOT NULL DEFAULT '' COMMENT '地址', `temporary` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否永久或者临时 0永久1临时', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `type` (`type`,`media_id`) USING BTREE, KEY `type_2` (`type`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='微信回复表'; # Dump of table eb_wechat_message # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_wechat_message`; CREATE TABLE `eb_wechat_message` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户行为记录id', `openid` varchar(32) NOT NULL DEFAULT '' COMMENT '用户openid', `type` varchar(32) NOT NULL DEFAULT '' COMMENT '操作类型', `result` varchar(512) NOT NULL DEFAULT '' COMMENT '操作详细记录', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `openid` (`openid`) USING BTREE, KEY `type` (`type`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户行为记录表'; # Dump of table eb_wechat_qrcode # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_wechat_qrcode`; CREATE TABLE `eb_wechat_qrcode` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '微信二维码ID', `third_type` varchar(32) NOT NULL DEFAULT '' COMMENT '二维码类型', `third_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '用户id', `ticket` varchar(255) NOT NULL DEFAULT '' COMMENT '二维码参数', `expire_seconds` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '二维码有效时间', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态', `url` varchar(255) NOT NULL DEFAULT '' COMMENT '微信访问url', `qrcode_url` varchar(255) NOT NULL DEFAULT '' COMMENT '微信二维码url', `scan` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '被扫的次数', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `third_type` (`third_type`,`third_id`) USING BTREE, KEY `ticket` (`ticket`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='微信二维码管理表'; # Dump of table eb_wechat_reply # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_wechat_reply`; CREATE TABLE `eb_wechat_reply` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '微信关键字回复id', `keywords` varchar(64) NOT NULL DEFAULT '' COMMENT '关键字', `type` varchar(32) NOT NULL DEFAULT '' COMMENT '回复类型', `data` text NOT NULL COMMENT '回复数据', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '回复状态 0=不可用 1 =可用', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `key` (`keywords`) USING BTREE, KEY `type` (`type`) USING BTREE, KEY `status` (`status`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='微信关键字回复表'; LOCK TABLES `eb_wechat_reply` WRITE; /*!40000 ALTER TABLE `eb_wechat_reply` DISABLE KEYS */; INSERT INTO `eb_wechat_reply` (`id`, `keywords`, `type`, `data`, `status`, `create_time`, `update_time`) VALUES (6,'default','text','{\"content\":\"默认消息\",\"src\":\"\",\"list\":[]}',1,'2020-06-12 11:24:19','2020-08-13 09:49:17'), (7,'news','news','{\"content\":\"\",\"mediaId\":\"\",\"articleId\":\"12\",\"srcUrl\":\"\",\"articleData\":{\"title\":\"6543\",\"imageInput\":[\"image/store/2020/08/11/c79e9cda47db47748da64fd5bd4d1a30l2wpoycstu.png\"]}}',1,'2020-06-12 11:31:33','2020-08-13 09:49:07'), (8,'subscribe','text','{\"content\":\"你好\",\"src\":\"\",\"list\":[]}',1,'2020-06-17 10:16:17','2020-08-13 09:48:16'); /*!40000 ALTER TABLE `eb_wechat_reply` ENABLE KEYS */; UNLOCK TABLES; # Dump of table eb_wechat_user # ------------------------------------------------------------ DROP TABLE IF EXISTS `eb_wechat_user`; CREATE TABLE `eb_wechat_user` ( `uid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '微信用户id', `unionid` varchar(30) DEFAULT NULL COMMENT '只有在用户将公众号绑定到微信开放平台帐号后,才会出现该字段', `openid` varchar(30) DEFAULT NULL COMMENT '用户的标识,对当前公众号唯一', `routine_openid` varchar(32) DEFAULT NULL COMMENT '小程序唯一身份ID', `nickname` varchar(64) NOT NULL COMMENT '用户的昵称', `headimgurl` varchar(256) NOT NULL COMMENT '用户头像', `sex` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '用户的性别,值为1时是男性,值为2时是女性,值为0时是未知', `city` varchar(64) NOT NULL COMMENT '用户所在城市', `language` varchar(64) NOT NULL COMMENT '用户的语言,简体中文为zh_CN', `province` varchar(64) NOT NULL COMMENT '用户所在省份', `country` varchar(64) NOT NULL COMMENT '用户所在国家', `remark` varchar(256) DEFAULT NULL COMMENT '公众号运营者对粉丝的备注,公众号运营者可在微信公众平台用户管理界面对粉丝添加备注', `groupid` smallint(5) unsigned DEFAULT '0' COMMENT '用户所在的分组ID(兼容旧的用户分组接口)', `tagid_list` varchar(256) DEFAULT NULL COMMENT '用户被打上的标签ID列表', `subscribe` tinyint(3) unsigned DEFAULT '1' COMMENT '用户是否订阅该公众号标识', `subscribe_time` int(10) unsigned DEFAULT NULL COMMENT '关注公众号时间', `stair` int(11) unsigned DEFAULT NULL COMMENT '一级推荐人', `second` int(11) unsigned DEFAULT NULL COMMENT '二级推荐人', `order_stair` int(11) DEFAULT NULL COMMENT '一级推荐人订单', `order_second` int(11) unsigned DEFAULT NULL COMMENT '二级推荐人订单', `now_money` decimal(8,2) unsigned DEFAULT NULL COMMENT '佣金', `session_key` varchar(32) DEFAULT NULL COMMENT '小程序用户会话密匙', `user_type` varchar(32) DEFAULT 'wechat' COMMENT '用户类型', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`uid`) USING BTREE, KEY `groupid` (`groupid`) USING BTREE, KEY `subscribe_time` (`subscribe_time`) USING BTREE, KEY `subscribe` (`subscribe`) USING BTREE, KEY `unionid` (`unionid`) USING BTREE, KEY `openid` (`openid`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='微信用户表'; LOCK TABLES `eb_wechat_user` WRITE; /*!40000 ALTER TABLE `eb_wechat_user` DISABLE KEYS */; INSERT INTO `eb_wechat_user` (`uid`, `unionid`, `openid`, `routine_openid`, `nickname`, `headimgurl`, `sex`, `city`, `language`, `province`, `country`, `remark`, `groupid`, `tagid_list`, `subscribe`, `subscribe_time`, `stair`, `second`, `order_stair`, `order_second`, `now_money`, `session_key`, `user_type`, `create_time`, `update_time`) VALUES (1,'oZEAhs-7N2r9aGwoBoQDYTJymiqM','od9iXwp4VcwWEeGCTRpuefUE36Cs','oREIr5BnWRo61BvRs8uk1Qay9FL4','hcore','https://wx.qlogo.cn/mmopen/vi_32/CVZWgWpjl99VjGFKRpIfzHKs56LrPM1Hf5StXU4XygpxsNxYwbZL6aT2VOo9ApHEQib9ia4dV6UchbwQboz0SrPA/132',1,'绵阳','zh_CN','四川','中国',NULL,0,'1,2',0,NULL,NULL,NULL,NULL,NULL,NULL,'tx+WzPVkRTl9Zy01QBJZ0A==','routine','2020-04-22 17:28:15','2020-04-22 18:06:47'), (2,'oZEAhsxFOWX4EZLDDsCJ7gYxl7UQ','od9iXwpdQM4akbIgyzZHYuwyu4_8',NULL,'王勇','http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJUCfWcM6AA8K9krlqnyNhn99UsvsaleCLoyYjYPuNC6ibap8onEm0DhvV1mLdPCvOVic1v9xJNByfA/132',1,'赣州','zh_CN','江西','中国',NULL,0,'11,12,13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 18:06:04'), (3,'oZEAhszijPsaRjpuPfkiTU9JmA3M','od9iXwsYl1LusC5WaIqNhnne8mKU','oREIr5HnU6HAeR0bBYVvssCwjpB4','全视眼镜','http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKMQf7tALD8odu0Ndk5letUwJ0P4e18ka6DAEwJOEIOKZuZvCCKHkRy9WTcMVcy0XL8ptdSdrAc2Q/132',1,'','zh_CN','','开曼群岛',NULL,0,'111,112,113',0,NULL,NULL,NULL,NULL,NULL,NULL,'SQ25BuomR0kvXXT1mCuBGg==','routine','2020-04-22 17:28:15','2020-04-22 18:06:10'), (4,NULL,NULL,NULL,'a81f04c17034','http://kaifa.crmeb.net/uploads/attach/2019/08/20190807/723adbdd4e49a0f9394dfc700ab5dba3.png',0,'','','','',NULL,0,'1,3',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'h5','2020-04-22 17:28:15','2020-04-22 18:06:50'), (5,'oZEAhs45n35RqOdAh1MUtqxCHMg4','od9iXwihQQxGePjCqMG-9gmO_wdk',NULL,'帝康','http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eoazqR3VXEYQQLgm7qJOvRkviaMiaOgY9GjAzHsFgmOoDsltBokViaHPXDbJV0icqkoIgBujdsJo1pqvA/132',1,'石家庄','zh_CN','河北','中国',NULL,0,'2,3',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 18:06:52'), (6,'oZEAhs9TuLCjuts2gGzJW7bEtx5g','od9iXwoKoJQzqpEpJnSeFmEz1924',NULL,'A01花开花落','http://thirdwx.qlogo.cn/mmopen/vi_32/TuAA9UC77h2dsuso7vjhV3doVRgj9pu9q6icicYV4AdxibdzH1vtP2a2N1ibwiblkbyZB1iaz3NlicUM5KQPQxQHT3O0w/132',1,'','zh_CN','','新加坡',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (7,'oZEAhs8T_mZp9cF4ZvkRov5uqguY','od9iXwvvpJsq82Qd_zHdksOU1TgQ',NULL,'L健成','http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJqEw6wVibjibQwj0LOWnzxXiaIVZQNPFfwAoH2qqSmrILFPjC8mSnpmSPkfRMJqEAGPuiaCUMk4RmAiaA/132',1,'','zh_CN','','利比亚',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (8,'oZEAhs02TLO8UzAOMLWngmAvr5zI','od9iXwtWrhhVhq_d20y1QXhuMypQ',NULL,'F','http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTIqRSGayrpKibVAtDeju271HZX4o81PicyKV6SXg0OiceAALEYN39SSLsxy7zRs0RbiaiaZX7dkzPkTcqQ/132',1,'朝阳','zh_CN','北京','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (9,'oZEAhsw0OCgvCRpX-RSUEjmp645M','od9iXwjcL4AQPPq1e-H7kRLvO4Zg',NULL,'机辉','http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTL6WupSgb1eCtyvgoZibeMo99QQVibeSp7K1NjIjicUdhdiaa0ST51UytDSuEGY8f7R1VlkhEictNTBCcw/132',1,'厦门','zh_CN','福建','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (10,'oZEAhs7PBuOuydmyO3lnZ-nb1F1U','od9iXwthkTRYnwLtWZubOHElcm6c',NULL,'虾','http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLBibKcpFUVQqHmIrgloqVj4ExYEWP2fJYBVyUDtlm67PgNIjG4r3h9knL0qYXgqmfura1IvKDIjcQ/132',1,'闸北','zh_CN','上海','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (11,'oZEAhs13jguLAWFw-8mQ7-Y5VlZU','od9iXwoFm6BCcvLJpX63Qak7BIhU',NULL,'英超','http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83erAwcfNMMg2rfNqzJ9ib3p5zu7FuLlj52OsdWARqAakjV6SXTBwJ8rk3pORGU1w7VkibDDuFE1lJxDQ/132',1,'','zh_CN','上海','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (12,'oZEAhs9OXNpLKfm2UsWj0wX35Dgk','od9iXwlDoYTmwBL1PgEsjLPTPVf0',NULL,'零','http://thirdwx.qlogo.cn/mmopen/vi_32/MdMiaHj4I3ic6AVKLQRVBib9IYmgusMJd9oLoJ9aGScfZH7L8qmV7vnia2kPNd2tFVYTwsMpzAIQdICRerSug8GHaQ/132',1,'贵阳','zh_CN','贵州','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (13,'oZEAhs5ELOKSQaoDyZxhnuRtVhkg','od9iXwiOWK4dWUFdXQMS1O_F8d4Y','oREIr5A2QuCSYu0AtJhessOfxa_M','༄许のོ࿆༘荣耀࿐','http://thirdwx.qlogo.cn/mmopen/YCjC4iaeTEpjnibGiafnzOAuIxVG0DZ9Q5ic2F6tA5Vib1fZXbc6AyicGTZCxsR5licesUoYhKmSyKJ62alEWIOH5PxWJcicnicyCu4mc/132',1,'安康','zh_CN','陕西','中国','',0,'',1,1583926946,NULL,NULL,NULL,NULL,NULL,'6nti9H61JmiPfE3P4EvXZQ==','routine','2020-04-22 17:28:15','2020-04-22 17:28:15'), (14,'oZEAhs3AqOJyxyi5zogTd5Y466ns','od9iXwtCEuxhROzDhWlrDVolHmUk',NULL,'骏捷洋货商城','http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLnH45HyiaqTUjO5s3krA0QOHMB27h71dnFibcScnibyuxib5rr3XdhkH7iaMcadZU47BOgfP0VtFl8vWA/132',1,'黄浦','zh_CN','上海','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (15,'oZEAhs13kcWmzMQod00idYbdPDe4','od9iXwgjl0_i8DQlym_7hTnPXW38',NULL,'陶','http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTI735OGP6zMxSliagoVt5w45Siaw8m7OiaVicxk1mHYEULVFbFoayXKE4YCff49CT8v9fRajvOSnUXyfw/132',1,'常州','en','江苏','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (16,'oZEAhsz2VF5cc0uBxslI4-wpcwsM','od9iXwq_2IT-LVBfGLUaYr5o2hNk',NULL,'黄科力||店管家||劲牛云商','http://thirdwx.qlogo.cn/mmopen/vi_32/F9EH0IrKJAbWoLW2tbz7NxQzntCk3MArQFibeEcGiafxtb6KLraay8TGkxornUNfoI5Jg1ZvbAhPTHA2ica2Fgp3A/132',1,'普陀','zh_CN','上海','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (17,'oZEAhszGZ4e8WQDUoImDzU9K7Eto','od9iXwgklAH5sj3lonR4Nws6uZSs',NULL,'史俊','http://thirdwx.qlogo.cn/mmopen/vi_32/Nr8o80t7TVyJkFRniaoUHUGItIiasxDNLjuLjE6LsQov3O8UISzjp3o5u5HIolic0UG83PIu1jCTIBOgd7BoTCuWw/132',1,'西安','zh_CN','陕西','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (18,'oZEAhs226WwJVW3U8SViIVf-051o','od9iXwsjWQ975J2chCqb__eSjPU4',NULL,'༄An࿆s༅ོ࿆n࿐','http://thirdwx.qlogo.cn/mmopen/vi_32/ldicWZia6dSPIXSsoWbAbLcRZwljQHVLCwIzaDYicMS9zrSRakKyhWBAicr0MCEKa7px0iaicMpnO3hib3QlsYDHKibtZg/132',1,'漳州','zh_CN','福建','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (19,'oZEAhs6mKmS6xTTGJjh5werRVZB0','od9iXwvtv9UqvjVFB95BRTnC7xYQ',NULL,'挑战成功','http://thirdwx.qlogo.cn/mmopen/vi_32/KT6CXyvicDgrLribs3WSehdXoHvZmlSGpttOMsEsWXBsgILGRDa2MAojAdIhFy5MhYKEur59YuI6t25B6XPPE2RA/132',1,'东莞','zh_CN','广东','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (20,'oZEAhs5_iVFaQ2uR86Yfs4KB3Das','od9iXwotj7Z5ft5SWsuALQZel8Ok',NULL,'飞翔','http://thirdwx.qlogo.cn/mmopen/vi_32/LmSEYyqHt4fp9JugVrYyv0k2zH9WeOjSGXlCpQk5CRAWoXjAdhgPB6icrwqFBU9LpwOjmNvQMicPFgto3BZ5ctLg/132',1,'','zh_CN','','阿尔巴尼亚',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (21,'oZEAhs_S51d1iA4FKUDFUSS1Lrgc','od9iXwtcNmlKDp09coXJqkzNR7U0',NULL,'『专·Marco 』','http://thirdwx.qlogo.cn/mmopen/vi_32/FA2kN8UCia68I6icgNeVcWz6iaOus7Mib1Pe8EGQX74vdwslu6fR3bLSB24YmM7OBh4WHKPgbRRueic0wicibLOmVNkhA/132',1,'广州','zh_CN','广东','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (22,'oZEAhs4ykYr0wPtOlISCwp910x14','od9iXwlVhCxKGoBpG9XXj4ZXQmOI',NULL,'WeiJun','http://thirdwx.qlogo.cn/mmopen/vi_32/5VyzJw8GtQxYt4pOXh08NS0kfeEicpL5icRPrtHtRIicLqapGWy4lj8o1CJGOS22KDuYj08qmjEUib2caMBcR7qtfw/132',1,'中山','zh_CN','广东','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (23,'oZEAhs0tEq6Luwdg5bI_vYniOSBo','od9iXwo-yN9htM5WkLu4wBqfHuYo',NULL,'自根','http://thirdwx.qlogo.cn/mmopen/vi_32/H6tWKQwkBL39xpE8UItkG4NLxy9mpUwmx8R04jFLyiaQRiaZNC4JhGuzIPOLHiaB4UOd9DbvWQ9yYRic5WXuYkNgSQ/132',1,'','zh_CN','','阿尔巴尼亚',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (24,'oZEAhsx5VCHJlP-KtYSbhLKOVLkw','od9iXwoOo63bgS4oFK9dZY9nvs_s',NULL,'凡人','http://thirdwx.qlogo.cn/mmopen/vi_32/OhYUsWYVjAZAibv3ZhJyJQtjncz2Wkwb4cRYBYbTG1ibrFJR4tBAOWM7RClbJqD5iaf28iczDf1j9l78yeeCSRe51A/132',1,'圣安多尼堂区','zh_CN','澳门','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (25,'oZEAhs4i_o6vl0_25-TDVyNvJDhk','od9iXwiCQ9NqBvx-BwCmEJjIp1pM',NULL,'田启威','http://thirdwx.qlogo.cn/mmopen/vi_32/mj5T4QTPXBicvG8Sr5eZcQ7J5kg87QZsGyRErnw7ceQns1A8asiaJfibwBicL63ibMWVFgP1RzYt7ySSPU2Ybemqzow/132',1,'银川','zh_CN','宁夏','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (26,'oZEAhs7TUumnH09bdTlNSOVCawKc','od9iXwvwK1WULeT_cZ_rK-vRIOWg',NULL,'初夏','http://thirdwx.qlogo.cn/mmopen/vi_32/fDN1YPppNmiaUMKYkFIkFDSmqvJl7bFyIV5wX3OGcOoq2WVNAvdqUd8Wdx4AxUThjAphcq98a7kcMSda2IBSaZw/132',1,'朝阳','zh_CN','北京','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (27,'oZEAhsxe8A1iBjU1wqh0DjaKM7Dg','od9iXwsLoMe0uIzTIcI5jD7QOANk',NULL,'boume™','http://thirdwx.qlogo.cn/mmopen/vi_32/p8oFqWlEhwYneElgkkkvAGibKCVbgaW1SPibSfIxSn0osR4NJZs5zzNicNfPwfts9aH1zD3wFfDzTsQVFCutal3aw/132',1,'南宁','zh_CN','广西','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (28,'oZEAhs9c3swzrLfXDAgPhJOdVZB0','od9iXwtFXmg387rKyt52Fg0lNZT4',NULL,'福の神','http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTIctQ8jX7OMF5Rt0sGg6p7DHGBQ9cvpicNHiaLbQ2tJg15SIiaLw1K5hlWOwbBEBaMzDQw4vZxHRryzw/132',1,'','zh_CN','','巴布亚新几内亚',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (29,'oZEAhsxDNbKM3VF4dfJ-yQZ9xc8o','od9iXwn0nxMtn8JhUjOms7AXyC1g',NULL,'董 涛','http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eq59ON4ianEib27ehErsMhiaBWZK90BsqVHt7icGbpwED0T2rs95zXm8icymysVRc9IgBndZTLMvnnc29w/132',1,'朝阳','zh_CN','北京','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (30,'oZEAhs2mtNaSiFyX3Oxa63oNAqfU','od9iXwhjZy9dbL3bZxU1dpvM7S6c',NULL,'山峰','http://thirdwx.qlogo.cn/mmopen/vi_32/icFHrdibe4fSJX4E1jAGGjXOar7Ry8HtGh606a85TLXKFiaqexZyM9AFUialBI2J6oLichOnSjDbaksicHEA9ln344dQ/132',1,'深圳','zh_CN','广东','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (31,'oZEAhs39o4PByYxQgnyVNsAnFA7E','od9iXwsdJAKyuO38tVfBzjIwniJM',NULL,'Bite','http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83erxyVIrWPKm7xauwJKjIouy0gAHKl4UiayynC9Ziavia5ewfg5cmdjrAlZiaJib8R66elPNKjtl7k9t8WQ/132',1,'朝阳','zh_CN','北京','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (32,'oZEAhs_nTgAU3OOSDSZ-aseVC11M','od9iXwvWOFq1ywhbuUa87cl2K624','oREIr5OaBEwZGMoioIQ7jN67o4e0','千寻','https://wx.qlogo.cn/mmopen/vi_32/DYAIOgq83eoKwiciaXeKqAUkG4jyibKQ98QwENEWztTy1pGtTpxd9sUX9GmKs0Ko5XAWudHMZLBtZcsicoVCsahQoQ/132',1,'海淀','zh_CN','北京','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,'VeJNZqAckqn1c1gve7w9qg==','routine','2020-04-22 17:28:15','2020-04-22 17:28:15'), (33,'oZEAhs-c2THrJauznyBeACDuaMnM','od9iXwvnovXr1VFTq20uhmpr_lV4',NULL,'依载道','http://thirdwx.qlogo.cn/mmopen/vi_32/RxZc4ZGUwpWcI9ibBDNIuDicLwYr4T7eEK3GXAvOg01NNINB2VBibDTe79ibupaOcDHj0G5eowIiahmDB76tXlk7N4A/132',1,'','zh_CN','','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (34,'oZEAhs2NtMHp9DsOFbIzbPP0qD1c','od9iXwuzpgRItZx1VhpJ4FwXlIZs',NULL,'A许之与岚(季) 聚梦网络科技','http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKy2u6icXX7s9heqHn34VMdRNwI73CRGJtyWn1xENIUMZibOyjHp4Upl9VW1DncqJX2icqm4LZialTic2A/132',1,'','zh_CN','艾因','阿拉伯联合酋长国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (35,'oZEAhs8-9y4IXYXMO1IKElRcUnu8','od9iXwuOe1K0XDWQw-shjQP-Wgyg',NULL,'兔杀鸡','http://thirdwx.qlogo.cn/mmopen/vi_32/sF8HJHCue1YC1OLhN9GptCgtBuOMG8jFwJSoCo5urgqxj1EXAQ2JwSSibJLorDEiaCNYoqeHu00el3zFOWYICkng/132',1,'','zh_CN','广西','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (36,'oZEAhsx-CeBeKJHbdRSjmPI2cKMA','od9iXwkQaqdl9iLJdoUOyLlCZpN8',NULL,'小多','http://thirdwx.qlogo.cn/mmopen/vi_32/r9Yd2ibAsiaSGD5Dep9KwmMNBc39t19rYwArgibdhzwmZV6WIk0bqqsCHu2zg1rPX373ELf1TdHf7OYlhVCNXxGmQ/132',1,'成都','zh_CN','四川','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (37,'oZEAhsxX4lgGLO1jsQ4B1SexjNmA','od9iXwizQQ2U3DSvCgGDIxV4rAzk',NULL,'古镇灯批发~客服','http://thirdwx.qlogo.cn/mmopen/vi_32/uRNqembZfqQgS63YsvibXibiclIDgQuiaIsB1L2FFiaPRql3gfCVf1FNxpKb0f1mPLR14or8aQE2cEP9fib0KxJlbDEg/132',1,'','zh_CN','万博','安哥拉',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (38,'oZEAhs1IBYGWwMxAvNADqsVv6mu0','od9iXwiH8HYvU1QOVwa0yXJK_33Q',NULL,'阿豪','http://thirdwx.qlogo.cn/mmopen/vi_32/DTHRaHicvH5cTHSBasyVxzhqIkZo9tcicKolbWXwY2K2nAxmOrfsrzoMSp6gZVl7TQdsAwxBP7NiaibNjTaiczxWVXw/132',1,'南宁','zh_CN','广西','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (39,'oZEAhs7f1AcpKQBZECE8ln2TY4Es','od9iXwvMNkeSsxb0wLzJzyPJ8V4s',NULL,'Cnory','http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLCkhXv7vFs6IygsWUamzqd4v7WqpFu3KpB9Wicibic9IwkWpvacb1SMxO26F0ge8PkyvakxatfGgwWA/132',1,'烟台','zh_CN','山东','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (40,'oZEAhs5hIbeHxu6wIdrxWTTu2Bp4','od9iXwm9oEANTtF0gYNBwhFV6IhY',NULL,'success','http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTJBpvBATibunQPHicS1XqNJqlu83lT8wmYt24VaaOGrw1qXW0micmkHn0guHOXD1fdHK3icIEuicic7aVtw/132',1,'厦门','zh_CN','福建','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (41,'oZEAhs2jLR64Ked9J8-wp79j_HbU','od9iXwo7HGCPj3SXDnAUBcka3PNQ',NULL,'风清云淡','http://thirdwx.qlogo.cn/mmopen/vi_32/AAy1hhDj1ZYyuev8QMPZ20L7Y7ljXRZX5fWPHibSogrvNQSx9joYnvmtM46Vn64UTlBdoOcD21K6oicrfqYpUEOg/132',1,'黄冈','zh_CN','湖北','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (42,'oZEAhsyTHGpaHnjBRCN6R11AGguI','od9iXwvd9VWgghChypscnNSwsIFY','oREIr5GF_ER4Khz5qVPuBJSzJS5Y','青春寄语','https://wx.qlogo.cn/mmopen/vi_32/tYfBPOdVAqhjwGJhDP3STdQQqa2sCbKDg45Qibx4wBSBzUIj5IkExoartuLFKicca1dpYVDLEqjaLt4Ae7BibsT8g/132',1,'','zh_CN','','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,'/dOXf5Padl3MhJhHovGpEg==','routine','2020-04-22 17:28:15','2020-04-22 17:28:15'), (43,'oZEAhs94kkOmzvSJK3Sza40uqQbE','od9iXwl4lTEp9njStIMMxW_sBC5o',NULL,'感知','http://thirdwx.qlogo.cn/mmopen/vi_32/2J73AoxZ7EEL5DhynnmxRWwhTUqptEQKkY4IibW4Uv9kBcIciatTj1SCAr5AdGibnIl30A2RH7Cunf4bnmPd95BJQ/132',1,'临沂','zh_CN','山东','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (44,'oZEAhs-hUd01QL3A3r6PX19ef3Sk','od9iXwksvONCUBtI19eyRoMKNrC4',NULL,'王剑','http://thirdwx.qlogo.cn/mmopen/vi_32/yDaYr67cIMXryK6rUhKYMicTINU06RKXoPFB85icjneserG69MBkwtOX034PJg5g3FD627OR65hy9KHicYeEKvmnw/132',1,'贵阳','zh_CN','贵州','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (45,'oZEAhs1t2cpStFaTprwGBpxVFTTY','od9iXwkkzDeGWEbScZhbVgxJhNUM',NULL,'铭人','http://thirdwx.qlogo.cn/mmopen/vi_32/XMW4S28xIRibWjchcTexQiaQG60pr1N5B4eh1deSD5pUv1kBJCU56hfcf6ROX72UPHic0sbxxXae1dLG0hHGBy6NA/132',1,'深圳','zh_CN','广东','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (46,'oZEAhs00FggQrlQBNimTBKkGfwwM','od9iXwgGd8U2vssb3e3ZXMoZaBe4',NULL,'默。','http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTK5icNAW9U8Bnp0Fta6JfXOMUZ56ogkJIJeOdoNYwXZAaVRa9CXibzJj6NjM0J0OH4g1KVUMkhibQl9w/132',1,'盐城','zh_CN','江苏','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (47,'oZEAhszI8DhKfvnnJ1aYC_M6dhP8','od9iXwp_l0puPHr55Z5EB-kzTBMY',NULL,'松夏07','http://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83equa5wzpsw7qBJia7Qaxv2Gv6jg1HkeTQAWfcvGf4Q3ZFJySHJEZXrYnel5iceNKB3ZnyWTZSKkb1ug/132',1,'黄石','zh_CN','湖北','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (48,'oZEAhswfqq9JaiiRgjBz-LVNbIMw','od9iXwq_r9JQJMvBk-qKb2EUJ-Y4',NULL,'NICK','http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTI01GCG9MdMibcclJk7biaDeBDWIfT4vUhVeE6BkyLYiakxjCvKichMeupWxe3G0xm7ZoITToHPMAKHZg/132',1,'九龙城区','zh_CN','香港','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (49,'oZEAhs9CAsT1Cf5-UIs4WB2a0Aq4','od9iXwtHttOHJprxVx88fKhvfdZ4',NULL,'Y.Z.P','http://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKLhVIH0WoYPZud6Q3rAuzmmmz83l5cL1gIuw1a1VGsGXSO3HWk9vES5jLolVt8KKibzp0BjA5f8LQ/132',1,'广州','zh_CN','广东','中国',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'wechat','2020-04-22 17:28:15','2020-04-22 17:28:15'), (9624,NULL,'od9iXwsAl3c0e3POY39awOq0nnJ4',NULL,'0a1096638aa4','http://kaifa.crmeb.net/uploads/attach/2019/08/20190807/723adbdd4e49a0f9394dfc700ab5dba3.png',0,'','','','',NULL,0,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'h5','2020-04-22 17:28:15','2020-06-16 14:09:10'); /*!40000 ALTER TABLE `eb_wechat_user` ENABLE KEYS */; UNLOCK TABLES; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;